AliasType.php in View Mode Page 8.3
Same filename and directory in other branches
Namespace
Drupal\view_mode_page\AnnotationFile
src/Annotation/AliasType.phpView source
<?php
namespace Drupal\view_mode_page\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.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* The token types.
*
* @var string[]
*/
public $types = [];
}