EntityLegal.php in Entity Legal 4.0.x
Same filename and directory in other branches
Namespace
Drupal\entity_legal\AnnotationFile
src/Annotation/EntityLegal.phpView source
<?php
namespace Drupal\entity_legal\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Class EntityLegal.
*
* Plugin Namespace: Plugin\EntityLegal.
*
* @package Drupal\entity_legal\Annotation
*
* @Annotation
*/
class EntityLegal extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the Entity Legal method plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* The method type; "new_users" or "existing_users".
*
* @var string
*/
public $type;
}
Classes
Name | Description |
---|---|
EntityLegal | Class EntityLegal. |