class FieldPermissionType in Field Permissions 8
Same name and namespace in other branches
- 8.2 src/Annotation/FieldPermissionType.php \Drupal\field_permissions\Annotation\FieldPermissionType
Defines a field permission type plugin.
Hierarchy
- class \Drupal\Component\Annotation\Plugin implements AnnotationInterface
- class \Drupal\field_permissions\Annotation\FieldPermissionType
Expanded class hierarchy of FieldPermissionType
1 file declares its use of FieldPermissionType
- Manager.php in src/
Plugin/ FieldPermissionType/ Manager.php
3 classes are annotated with FieldPermissionType
- CustomAccess in src/
Plugin/ FieldPermissionType/ CustomAccess.php - Defines custom access for fields.
- PrivateAccess in src/
Plugin/ FieldPermissionType/ PrivateAccess.php - Defines a private field type.
- TestAccess in tests/
modules/ field_permissions_test/ src/ Plugin/ FieldPermissionType/ TestAccess.php - A test field permission type plugin.
File
- src/
Annotation/ FieldPermissionType.php, line 12
Namespace
Drupal\field_permissions\AnnotationView source
class FieldPermissionType extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable title.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $title;
/**
* The permission type description.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description;
/**
* The weight for ordering the plugins on the field settings page.
*
* @var int
*/
public $weight;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FieldPermissionType:: |
public | property | The permission type description. | |
FieldPermissionType:: |
public | property | The plugin ID. | |
FieldPermissionType:: |
public | property | The human-readable title. | |
FieldPermissionType:: |
public | property | The weight for ordering the plugins on the field settings page. | |
Plugin:: |
protected | property | The plugin definition read from the class annotation. | 1 |
Plugin:: |
public | function |
Gets the value of an annotation. Overrides AnnotationInterface:: |
5 |
Plugin:: |
public | function |
Gets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the unique ID for this annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
protected | function | Parses an annotation into its definition. | |
Plugin:: |
public | function |
Sets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Sets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function | Constructs a Plugin object. | 2 |