Pathauto and dependencies

This commit is contained in:
Rob Davies 2017-05-22 15:12:47 +01:00
parent 4b1a293d57
commit 24ffcb956b
257 changed files with 29510 additions and 0 deletions

View file

@ -0,0 +1,37 @@
<?php
namespace Drupal\pathauto\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines an AliasType annotation.
*
* @Annotation
*/
class AliasType extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the action plugin.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $label;
/**
* The token types.
*
* @var string[]
*/
public $types = array();
}