class MediaType in Media entity 8
Same name and namespace in other branches
- 8.2 src/Annotation/MediaType.php \Drupal\media_entity\Annotation\MediaType
Defines an media entity type plugin annotation object.
Hierarchy
- class \Drupal\Component\Annotation\Plugin implements AnnotationInterface
- class \Drupal\media_entity\Annotation\MediaType
Expanded class hierarchy of MediaType
See also
hook_media_entity_type_info_alter()
2 classes are annotated with MediaType
- Generic in src/
Plugin/ MediaEntity/ Type/ Generic.php - Provides generic media type.
- TestType in tests/
modules/ media_entity_test_type/ src/ Plugin/ MediaEntity/ Type/ TestType.php - Provides generic media type.
File
- src/
Annotation/ MediaType.php, line 14
Namespace
Drupal\media_entity\AnnotationView source
class MediaType extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the type.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $label;
/**
* A brief description of the plugin.
*
* This will be shown when adding or configuring this display.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation (optional)
*/
public $description = '';
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MediaType:: |
public | property | A brief description of the plugin. | |
MediaType:: |
public | property | The plugin ID. | |
MediaType:: |
public | property | The human-readable name of the type. | |
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 |