You are here

class Product in Token Content Access 8

Same name and namespace in other branches
  1. 2.0.x modules/tca_commerce_product/src/Plugin/TcaPlugin/Product.php \Drupal\tca_commerce_product\Plugin\TcaPlugin\Product

Implements TCA for commerce products.

Plugin annotation


@TcaPlugin(
 id = "tca_commerce_product",
 label = @Translation("Product"),
 entityType = "commerce_product"
)

Hierarchy

Expanded class hierarchy of Product

File

modules/tca_commerce_product/src/Plugin/TcaPlugin/Product.php, line 16

Namespace

Drupal\tca_commerce_product\Plugin\TcaPlugin
View source
class Product 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
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 3
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. 92
Product::getBundleFormSubmitHandlerAttachLocations public function Return locations to attach submit handlers to entity bundles. Overrides TcaPluginBase::getBundleFormSubmitHandlerAttachLocations
Product::getFormSubmitHandlerAttachLocations public function Return locations to attach submit handlers to entities. Overrides TcaPluginBase::getFormSubmitHandlerAttachLocations
Product::isFieldable public function The fildable mark. Overrides TcaPluginBase::isFieldable
TcaPluginBase::getEntityTokenMap public function Return a map of entity IDs used by this plugin to token IDs. Overrides TcaPluginInterface::getEntityTokenMap