AccountSettingsForm::__construct

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

public function __construct(ConfigFactoryInterface $config_factory, ModuleHandlerInterface $module_handler, RoleStorageInterface $role_storage) {
  parent::__construct($config_factory);
  $this->moduleHandler = $module_handler;
  $this->roleStorage = $role_storage;
}
doc_Drupal
2016-10-29 08:42:56
Comments
Leave a Comment

Please login to continue.