Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / pathauto / src / Plugin / pathauto / AliasType / Broken.php
1 <?php
2
3 namespace Drupal\pathauto\Plugin\pathauto\AliasType;
4
5 /**
6  * Defines a fallback plugin for missing block plugins.
7  *
8  * @AliasType(
9  *   id = "broken",
10  *   label = @Translation("Broken"),
11  *   admin_label = @Translation("Broken/Missing"),
12  *   category = @Translation("AliasType"),
13  * )
14  */
15 class Broken extends EntityAliasTypeBase {
16
17   /**
18    * {@inheritdoc}
19    */
20   public function getLabel() {
21     return $this->t('Broken type');
22   }
23
24 }