class Node in Token Content Access 8
Same name and namespace in other branches
- 2.0.x modules/tca_node/src/Plugin/TcaPlugin/Node.php \Drupal\tca_node\Plugin\TcaPlugin\Node
Implements TCA for nodes.
Plugin annotation
@TcaPlugin(
id = "tca_node",
label = @Translation("Node"),
entityType = "node"
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\tca\Plugin\TcaPluginBase implements TcaPluginInterface
- class \Drupal\tca_node\Plugin\TcaPlugin\Node
- class \Drupal\tca\Plugin\TcaPluginBase implements TcaPluginInterface
Expanded class hierarchy of Node
File
- modules/
tca_node/ src/ Plugin/ TcaPlugin/ Node.php, line 16
Namespace
Drupal\tca_node\Plugin\TcaPluginView source
class Node extends TcaPluginBase {
/**
* {@inheritdoc}
*/
public function isFieldable() {
return TRUE;
}
/**
* {@inheritdoc}
*/
public function getFormSubmitHandlerAttachLocations() {
return [
[
'actions',
'submit',
'#submit',
],
];
}
/**
* {@inheritdoc}
*/
public function getBundleFormSubmitHandlerAttachLocations() {
return [
[
'actions',
'submit',
'#submit',
],
[
'actions',
'save_continue',
'#submit',
],
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Node:: |
public | function |
Return locations to attach submit handlers to entity bundles. Overrides TcaPluginBase:: |
|
Node:: |
public | function |
Return locations to attach submit handlers to entities. Overrides TcaPluginBase:: |
|
Node:: |
public | function |
The fildable mark. Overrides TcaPluginBase:: |
|
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 |
TcaPluginBase:: |
public | function |
Return a map of entity IDs used by this plugin to token IDs. Overrides TcaPluginInterface:: |