SiteSettingsForm::$renderer

The renderer. Type: \Drupal\Core\Render\RendererInterface File core/lib/Drupal/Core/Installer/Form/SiteSettingsForm.php, line 29 Class SiteSettingsForm Provides a form to configure and rewrite settings.php. Namespace Drupal\Core\Installer\Form Code protected $renderer;

SiteConfigureForm::getFormId

public SiteConfigureForm::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides FormInterface::getFormId File core/lib/Drupal/Core/Installer/Form/SiteConfigureForm.php, line 102 Class SiteConfigureForm Provides the site configuration form. Namespace Drupal\Core\Installer\Form Code public function getFormId() { return 'install_configure_form'; }

SiteConfigureForm::submitForm

public SiteConfigureForm::submitForm(array &$form, FormStateInterface $form_state) Form submission handler. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Overrides ConfigFormBase::submitForm File core/lib/Drupal/Core/Installer/Form/SiteConfigureForm.php, line 259 Class SiteConfigureForm Provides the site configuration form. Namespace Drupal\Core\Installer\Form Code

SiteConfigureForm::__construct

public SiteConfigureForm::__construct($root, $site_path, UserStorageInterface $user_storage, StateInterface $state, ModuleInstallerInterface $module_installer, CountryManagerInterface $country_manager) Constructs a new SiteConfigureForm. Parameters string $root: The app root. string $site_path: The site path. \Drupal\user\UserStorageInterface $user_storage: The user storage. \Drupal\Core\State\StateInterface $state: The state service. \Drupal\Core\Extension\ModuleInstallerInterface $module_ins

SiteConfigureForm::validateForm

public SiteConfigureForm::validateForm(array &$form, FormStateInterface $form_state) Form validation handler. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Overrides FormBase::validateForm File core/lib/Drupal/Core/Installer/Form/SiteConfigureForm.php, line 250 Class SiteConfigureForm Provides the site configuration form. Namespace Drupal\Core\Installer\Form Code p

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::$sitePath

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

SiteConfigureForm::$state

The state service. Type: \Drupal\Core\State\StateInterface File core/lib/Drupal/Core/Installer/Form/SiteConfigureForm.php, line 37 Class SiteConfigureForm Provides the site configuration form. Namespace Drupal\Core\Installer\Form Code protected $state;

SiteConfigureForm::create

public static SiteConfigureForm::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The servic

SiteConfigureForm::buildForm

public SiteConfigureForm::buildForm(array $form, FormStateInterface $form_state) Form constructor. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value array The form structure. Overrides ConfigFormBase::buildForm File core/lib/Drupal/Core/Installer/Form/SiteConfigureForm.php, line 120 Class SiteConfigureForm Provides the site configuration form. Namespace Drupal