public AccountSettingsForm::__construct(ConfigFactoryInterface $config_factory, ModuleHandlerInterface $module_handler, RoleStorageInterface $role_storage)
Constructs a \Drupal\user\AccountSettingsForm object.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.
\Drupal\user\RoleStorageInterface $role_storage: The role storage.
Overrides ConfigFormBase::__construct
File
- core/modules/user/src/AccountSettingsForm.php, line 41
Class
- AccountSettingsForm
- Configure user settings for this site.
Namespace
Drupal\user
Code
1 2 3 4 5 | public function __construct(ConfigFactoryInterface $config_factory , ModuleHandlerInterface $module_handler , RoleStorageInterface $role_storage ) { parent::__construct( $config_factory ); $this ->moduleHandler = $module_handler ; $this ->roleStorage = $role_storage ; } |
Please login to continue.