class ConfigPagesController in Config Pages 8
Same name and namespace in other branches
- 8.3 src/Controller/ConfigPagesController.php \Drupal\config_pages\Controller\ConfigPagesController
- 8.2 src/Controller/ConfigPagesController.php \Drupal\config_pages\Controller\ConfigPagesController
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\config_pages\Controller\ConfigPagesController
Expanded class hierarchy of ConfigPagesController
File
- src/
Controller/ ConfigPagesController.php, line 17
Namespace
Drupal\config_pages\ControllerView source
class ConfigPagesController extends ControllerBase {
/**
* The config page storage.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected $ConfigPagesStorage;
/**
* The config page type storage.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected $ConfigPagesTypeStorage;
/**
* The theme handler.
*
* @var \Drupal\Core\Extension\ThemeHandlerInterface
*/
protected $themeHandler;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
$entity_type_manager = $container
->get('entity_type.manager');
return new static($entity_type_manager
->getStorage('config_pages'), $entity_type_manager
->getStorage('config_pages_type'), $container
->get('theme_handler'), $container
->get('entity.query'), $entity_type_manager);
}
/**
* Constructs a ConfigPages object.
*
* @param \Drupal\Core\Entity\EntityStorageInterface $config_pages_storage
* The config page storage.
* @param \Drupal\Core\Entity\EntityStorageInterface $config_pages_type_storage
* The config page type storage.
* @param \Drupal\Core\Extension\ThemeHandlerInterface $theme_handler
* The theme handler.
*/
public function __construct(EntityStorageInterface $config_pages_storage, EntityStorageInterface $config_pages_type_storage, ThemeHandlerInterface $theme_handler, QueryFactory $entity_query, EntityTypeManagerInterface $entity_type_manager) {
$this->ConfigPagesStorage = $config_pages_storage;
$this->ConfigPagesTypeStorage = $config_pages_type_storage;
$this->themeHandler = $theme_handler;
$this->entityQuery = $entity_query;
$this->entityTypeManager = $entity_type_manager;
}
/**
* Presents the config page creation form.
*
* @param \Drupal\config_pages\ConfigPagesTypeInterface $config_pages_type
* The config page type to add.
* @param \Symfony\Component\HttpFoundation\Request $request
* The current request object.
*
* @return array
* A form array as expected by drupal_render().
*/
public function addForm(ConfigPagesTypeInterface $config_pages_type, Request $request) {
$config_page = $this->ConfigPagesStorage
->create([
'type' => $config_pages_type
->id(),
]);
return $this
->entityFormBuilder()
->getForm($config_page);
}
/**
* Provides the page title for this controller.
*
* @param \Drupal\config_pages\ConfigPagesTypeInterface $config_pages_type
* The config page type being added.
*
* @return string
* The page title.
*/
public function getAddFormTitle($config_pages_type) {
$config_pages_types = ConfigPagesType::loadMultiple();
$config_pages_type = $config_pages_types[$config_pages_type];
return $this
->t('Add %type config page', [
'%type' => $config_pages_type
->label(),
]);
}
/**
* Presents the config page creation/edit form.
*
* @param \Drupal\config_pages\ConfigPagesTypeInterface $config_pages_type
* The config page type to add.
*
* @return array
* A form array as expected by drupal_render().
*/
public function classInit($config_pages_type = '') {
$typeEntity = ConfigPagesType::load($config_pages_type);
if (empty($typeEntity)) {
throw new NotFoundHttpException();
}
$contextData = $typeEntity
->getContextData();
$config_page_ids = $this->entityQuery
->get('config_pages')
->condition('type', $config_pages_type)
->condition('context', $contextData)
->execute();
if (!empty($config_page_ids)) {
$config_page_id = array_shift($config_page_ids);
$entityStorage = $this->entityTypeManager
->getStorage('config_pages');
$config_page = $entityStorage
->load($config_page_id);
}
else {
$config_page = $this->ConfigPagesStorage
->create([
'type' => $config_pages_type,
]);
}
return $this
->entityFormBuilder()
->getForm($config_page);
}
/**
* Presents the config page confiramtion form.
*
* @return array
* A form array as expected by drupal_render().
*/
public function clearConfirmation($config_pages) {
return \Drupal::formBuilder()
->getForm('Drupal\\config_pages\\Form\\ConfigPagesClearConfirmationForm', $config_pages);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigPagesController:: |
protected | property | The config page storage. | |
ConfigPagesController:: |
protected | property | The config page type storage. | |
ConfigPagesController:: |
protected | property | The theme handler. | |
ConfigPagesController:: |
public | function | Presents the config page creation form. | |
ConfigPagesController:: |
public | function | Presents the config page creation/edit form. | |
ConfigPagesController:: |
public | function | Presents the config page confiramtion form. | |
ConfigPagesController:: |
public static | function |
Instantiates a new instance of this class. Overrides ControllerBase:: |
|
ConfigPagesController:: |
public | function | Provides the page title for this controller. | |
ConfigPagesController:: |
public | function | Constructs a ConfigPages object. | |
ControllerBase:: |
protected | property | The configuration factory. | |
ControllerBase:: |
protected | property | The current user service. | 1 |
ControllerBase:: |
protected | property | The entity form builder. | |
ControllerBase:: |
protected | property | The entity manager. | |
ControllerBase:: |
protected | property | The entity type manager. | |
ControllerBase:: |
protected | property | The form builder. | 2 |
ControllerBase:: |
protected | property | The key-value storage. | 1 |
ControllerBase:: |
protected | property | The language manager. | 1 |
ControllerBase:: |
protected | property | The module handler. | 2 |
ControllerBase:: |
protected | property | The state service. | |
ControllerBase:: |
protected | function | Returns the requested cache bin. | |
ControllerBase:: |
protected | function | Retrieves a configuration object. | |
ControllerBase:: |
private | function | Returns the service container. | |
ControllerBase:: |
protected | function | Returns the current user. | 1 |
ControllerBase:: |
protected | function | Retrieves the entity form builder. | |
ControllerBase:: |
protected | function | Retrieves the entity manager service. | |
ControllerBase:: |
protected | function | Retrieves the entity type manager. | |
ControllerBase:: |
protected | function | Returns the form builder service. | 2 |
ControllerBase:: |
protected | function | Returns a key/value storage collection. | 1 |
ControllerBase:: |
protected | function | Returns the language manager service. | 1 |
ControllerBase:: |
protected | function | Returns the module handler. | 2 |
ControllerBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
ControllerBase:: |
protected | function | Returns the state storage service. | |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |