You are here

class Node in Token Content Access 2.0.x

Same name and namespace in other branches
  1. 8 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

Expanded class hierarchy of Node

File

modules/tca_node/src/Plugin/TcaPlugin/Node.php, line 16

Namespace

Drupal\tca_node\Plugin\TcaPlugin
View 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

Namesort descending Modifiers Type Description Overrides
Node::getBundleFormSubmitHandlerAttachLocations public function Return locations to attach submit handlers to entity bundles. Overrides TcaPluginBase::getBundleFormSubmitHandlerAttachLocations
Node::getFormSubmitHandlerAttachLocations public function Return locations to attach submit handlers to entities. Overrides TcaPluginBase::getFormSubmitHandlerAttachLocations
Node::isFieldable public function The fildable mark. Overrides TcaPluginBase::isFieldable
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 2
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
PluginBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. 98
TcaPluginBase::getEntityTokenMap public function Return a map of entity IDs used by this plugin to token IDs. Overrides TcaPluginInterface::getEntityTokenMap