class ListUsageController in Entity Usage 8
Same name and namespace in other branches
- 8.4 src/Controller/ListUsageController.php \Drupal\entity_usage\Controller\ListUsageController
- 8.2 src/Controller/ListUsageController.php \Drupal\entity_usage\Controller\ListUsageController
- 8.3 src/Controller/ListUsageController.php \Drupal\entity_usage\Controller\ListUsageController
Controller for our pages.
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\entity_usage\Controller\ListUsageController
Expanded class hierarchy of ListUsageController
File
- src/
Controller/ ListUsageController.php, line 16
Namespace
Drupal\entity_usage\ControllerView source
class ListUsageController extends ControllerBase {
/**
* The EntityTypeManager service.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* The EntityUsage service.
*
* @var \Drupal\entity_usage\EntityUsageInterface
*/
protected $entityUsage;
/**
* ListUsageController constructor.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The EntityManager service.
* @param \Drupal\entity_usage\EntityUsageInterface $entity_usage
* The EntityUsage service.
*/
public function __construct(EntityTypeManagerInterface $entity_type_manager, EntityUsageInterface $entity_usage) {
$this->entityTypeManager = $entity_type_manager;
$this->entityUsage = $entity_usage;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('entity_type.manager'), $container
->get('entity_usage.usage'));
}
/**
* Lists the usage of a given entity.
*
* @param string $type
* The entity type.
* @param int $id
* The entity ID.
*
* @return array
* The page build to be rendered.
*/
public function listUsagePage($type, $id) {
$entity_types = array_keys($this->entityTypeManager
->getDefinitions());
if (!is_string($type) || !is_numeric($id) || !in_array($type, $entity_types)) {
throw new NotFoundHttpException();
}
$entity = $this->entityTypeManager
->getStorage($type)
->load($id);
if ($entity) {
$usages = $this->entityUsage
->listUsage($entity, TRUE);
if (empty($usages)) {
// Entity exists but not used.
$build = [
'#markup' => $this
->t('There are no recorded usages for entity of type: @type with id: @id', [
'@type' => $type,
'@id' => $id,
]),
];
}
else {
// Entity is being used.
$header = [
$this
->t('Referencing entity'),
$this
->t('Referencing entity type'),
$this
->t('Referencing method'),
$this
->t('Count'),
];
$rows = [];
foreach ($usages as $method => $method_usages) {
foreach ($method_usages as $re_type => $type_usages) {
foreach ($type_usages as $re_id => $count) {
$referencing_entity = $this->entityTypeManager
->getStorage($re_type)
->load($re_id);
if ($referencing_entity) {
$link = $this
->getReferencingEntityLink($referencing_entity);
$rows[] = [
$link,
$re_type,
$method,
$count,
];
}
}
}
}
$build = [
'#theme' => 'table',
'#rows' => $rows,
'#header' => $header,
];
}
}
else {
// Non-existing entity in database.
$build = [
'#markup' => $this
->t('Could not find the entity of type: @type with id: @id', [
'@type' => $type,
'@id' => $id,
]),
];
}
return $build;
}
/**
* Title page callback.
*
* @param string $type
* The entity type.
* @param int $id
* The entity id.
*
* @return string
* The title to be used on this page.
*/
public function getTitle($type, $id) {
$entity = $this->entityTypeManager
->getStorage($type)
->load($id);
if ($entity) {
return $this
->t('Entity usage information for %entity_label', [
'%entity_label' => $entity
->label(),
]);
}
else {
return $this
->t('Entity Usage List');
}
}
/**
* Retrieve a link to the referencing entity.
*
* @param \Drupal\Core\Entity\ContentEntityInterface $referencing_entity
* The fully-loaded referencing entity.
* @param string|null $text
* (optional) The link text for the anchor tag as a translated string.
* If NULL, it will use the entity's label. Defaults to NULL.
*
* @return \Drupal\Core\Link|string
* A link to the entity, or its non-linked label, in case it was impossible
* to correctly build a link.
* Note that Paragraph entities are specially treated. This function will
* return the link to its parent entity, relying on the fact that paragraphs
* have only one single parent and don't have canonical template.
*/
private function getReferencingEntityLink(ContentEntityInterface $referencing_entity, $text = NULL) {
$entity_label = $referencing_entity
->access('view label') ? $referencing_entity
->label() : $this
->t('- Restricted access -');
if ($referencing_entity
->hasLinkTemplate('canonical')) {
$link_text = $text ?: $entity_label;
// Prevent 404s by exposing the text unlinked if the user has no access
// to view the entity.
return $referencing_entity
->access('view') ? $referencing_entity
->toLink($link_text) : $link_text;
}
// Treat paragraph entities in a special manner. Once the current paragraphs
// implementation does not support reusing paragraphs, it is safe to
// consider that each paragraph entity is attached to only one parent
// entity. For this reason we will use the link to the parent's entity,
// adding a note that the parent uses this entity through a paragraph.
// @see #2414865 and related issues for more info.
if ($referencing_entity
->getEntityTypeId() == 'paragraph' && ($parent = $referencing_entity
->getParentEntity())) {
return $this
->getReferencingEntityLink($parent, $entity_label);
}
// As a fallback just return a non-linked label.
return $entity_label;
}
/**
* Checks access based on whether the user can view the current entity.
*
* @param string $type
* The entity type.
* @param int $id
* The entity ID.
*
* @return \Drupal\Core\Access\AccessResultInterface
* The access result.
*/
public function checkAccess($type, $id) {
$entity = $this->entityTypeManager
->getStorage($type)
->load($id);
if (!$entity || !$entity
->access('view')) {
return AccessResult::forbidden();
}
return AccessResult::allowed();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
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 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. | |
ListUsageController:: |
protected | property |
The EntityTypeManager service. Overrides ControllerBase:: |
|
ListUsageController:: |
protected | property | The EntityUsage service. | |
ListUsageController:: |
public | function | Checks access based on whether the user can view the current entity. | |
ListUsageController:: |
public static | function |
Instantiates a new instance of this class. Overrides ControllerBase:: |
|
ListUsageController:: |
private | function | Retrieve a link to the referencing entity. | |
ListUsageController:: |
public | function | Title page callback. | |
ListUsageController:: |
public | function | Lists the usage of a given entity. | |
ListUsageController:: |
public | function | ListUsageController constructor. | |
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. |