You are here

abstract class IndexRecordContentTransformationBase in Views Natural Sort 8.2

Base class for Views Natural Sort Index Record Content Transformation plugins.

Hierarchy

Expanded class hierarchy of IndexRecordContentTransformationBase

5 files declare their use of IndexRecordContentTransformationBase
DaysOfTheWeek.php in src/Plugin/IndexRecordContentTransformation/DaysOfTheWeek.php
Numbers.php in src/Plugin/IndexRecordContentTransformation/Numbers.php
RemoveBeginningWords.php in src/Plugin/IndexRecordContentTransformation/RemoveBeginningWords.php
RemoveSymbols.php in src/Plugin/IndexRecordContentTransformation/RemoveSymbols.php
RemoveWords.php in src/Plugin/IndexRecordContentTransformation/RemoveWords.php

File

src/Plugin/IndexRecordContentTransformationBase.php, line 12

Namespace

Drupal\views_natural_sort\Plugin
View source
abstract class IndexRecordContentTransformationBase extends PluginBase implements IndexRecordContentTransformationInterface, ContainerFactoryPluginInterface {
  public function __construct(array $configuration, $plugin_id, $plugin_definition) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($configuration, $plugin_id, $plugin_definition);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
IndexRecordContentTransformationBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
IndexRecordContentTransformationBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase::__construct
IndexRecordContentTransformationInterface::transform public function 5
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.