SiteConfigureForm::$userStorage

The user storage. Type: \Drupal\user\UserStorageInterface File core/lib/Drupal/Core/Installer/Form/SiteConfigureForm.php, line 30 Class SiteConfigureForm Provides the site configuration form. Namespace Drupal\Core\Installer\Form Code protected $userStorage;

SiteConfigureForm::$root

The app root. Type: string File core/lib/Drupal/Core/Installer/Form/SiteConfigureForm.php, line 58 Class SiteConfigureForm Provides the site configuration form. Namespace Drupal\Core\Installer\Form Code protected $root;

SiteConfigureForm::$moduleInstaller

The module installer. Type: \Drupal\Core\Extension\ModuleInstallerInterface File core/lib/Drupal/Core/Installer/Form/SiteConfigureForm.php, line 44 Class SiteConfigureForm Provides the site configuration form. Namespace Drupal\Core\Installer\Form Code protected $moduleInstaller;

SiteConfigureForm::$countryManager

The country manager. Type: \Drupal\Core\Locale\CountryManagerInterface File core/lib/Drupal/Core/Installer/Form/SiteConfigureForm.php, line 51 Class SiteConfigureForm Provides the site configuration form. Namespace Drupal\Core\Installer\Form Code protected $countryManager;

SiteConfigureForm

Provides the site configuration form. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTraitclass \Drupal\Core\Installer\Form\SiteConfigureForm File core/lib/Drupal/Core/Installer/Form/SiteConfigureForm.php, line 16 Namespace Drupal\Core\Inst

ShowButtonsCommand::render

public ShowButtonsCommand::render() Return an array to be run through json_encode and sent to the client. Overrides CommandInterface::render File core/modules/views/src/Ajax/ShowButtonsCommand.php, line 35 Class ShowButtonsCommand Provides an AJAX command for showing the save and cancel buttons. Namespace Drupal\views\Ajax Code public function render() { return array( 'command' => 'viewsShowButtons', 'changed' => $this->changed, ); }

ShowButtonsCommand::__construct

public ShowButtonsCommand::__construct($changed) Constructs a \Drupal\views\Ajax\ShowButtonsCommand object. Parameters bool $changed: Whether the view has been changed. File core/modules/views/src/Ajax/ShowButtonsCommand.php, line 28 Class ShowButtonsCommand Provides an AJAX command for showing the save and cancel buttons. Namespace Drupal\views\Ajax Code public function __construct($changed) { $this->changed = $changed; }

SingleFlushStrategy::processPlaceholders

public SingleFlushStrategy::processPlaceholders(array $placeholders) Processes placeholders to render them with different strategies. Parameters array $placeholders: The placeholders to process, with the keys being the markup for the placeholders and the values the corresponding render array describing the data to be rendered. Return value array The resulting placeholders, with a subset of the keys of $placeholders (and those being the markup for the placeholders) but with the corresponding r

SingleFlushStrategy

Defines the 'single_flush' placeholder strategy. This is designed to be the fallback strategy, so should have the lowest priority. All placeholders that are not yet replaced at this point will be rendered as is and delivered directly. Hierarchy class \Drupal\Core\Render\Placeholder\SingleFlushStrategy implements PlaceholderStrategyInterface File core/lib/Drupal/Core/Render/Placeholder/SingleFlushStrategy.php, line 12 Namespace Drupal\Core\Render\Placeholder Members Name Modifiers

ShowButtonsCommand::$changed

Whether the view has been changed. Type: bool File core/modules/views/src/Ajax/ShowButtonsCommand.php, line 20 Class ShowButtonsCommand Provides an AJAX command for showing the save and cancel buttons. Namespace Drupal\views\Ajax Code protected $changed;