class Taxonomy in Rabbit Hole 8
Same name and namespace in other branches
- 2.x modules/rh_taxonomy/src/Plugin/RabbitHoleEntityPlugin/Taxonomy.php \Drupal\rh_taxonomy\Plugin\RabbitHoleEntityPlugin\Taxonomy
Implements rabbit hole behavior for taxonomy.
Plugin annotation
@RabbitHoleEntityPlugin(
id = "rh_taxonomy_term",
label = @Translation("Taxonomy Term"),
entityType = "taxonomy_term"
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\rabbit_hole\Plugin\RabbitHoleEntityPluginBase implements RabbitHoleEntityPluginInterface
- class \Drupal\rh_taxonomy\Plugin\RabbitHoleEntityPlugin\Taxonomy
- class \Drupal\rabbit_hole\Plugin\RabbitHoleEntityPluginBase implements RabbitHoleEntityPluginInterface
Expanded class hierarchy of Taxonomy
File
- modules/
rh_taxonomy/ src/ Plugin/ RabbitHoleEntityPlugin/ Taxonomy.php, line 16
Namespace
Drupal\rh_taxonomy\Plugin\RabbitHoleEntityPluginView source
class Taxonomy extends RabbitHoleEntityPluginBase {
/**
* {@inheritdoc}
*/
public function getEntityTokenMap() {
return [
'taxonomy_term' => 'term',
'taxonomy_vocabulary' => 'vocabulary',
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 92 |
RabbitHoleEntityPluginBase:: |
public | function |
Return locations to attach submit handlers to entity bundle form. Overrides RabbitHoleEntityPluginInterface:: |
1 |
RabbitHoleEntityPluginBase:: |
public | function |
Return locations to attach submit handlers to entities. Overrides RabbitHoleEntityPluginInterface:: |
|
RabbitHoleEntityPluginBase:: |
public | function |
Return the form ID of the config form for this plugin's entity. Overrides RabbitHoleEntityPluginInterface:: |
2 |
RabbitHoleEntityPluginBase:: |
public | function |
Return locations to attach submit handlers to the global config form. Overrides RabbitHoleEntityPluginInterface:: |
1 |
Taxonomy:: |
public | function |
Return a map of entity IDs used by this plugin to token IDs. Overrides RabbitHoleEntityPluginBase:: |