public ConfigFormBase::__construct(ConfigFactoryInterface $config_factory)
Constructs a \Drupal\system\ConfigFormBase object.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.
File
- core/lib/Drupal/Core/Form/ConfigFormBase.php, line 20
Class
- ConfigFormBase
- Base class for implementing system configuration forms.
Namespace
Drupal\Core\Form
Code
1 2 3 | public function __construct(ConfigFactoryInterface $config_factory ) { $this ->setConfigFactory( $config_factory ); } |
Please login to continue.