You are here

class Equals in ThemeKey 8

Provides an 'equals' operator.

Plugin annotation


@Operator(
  id = "=",
  name = @Translation("Equals"),
  description = @Translation("Equals (exact value of a property, consider ThemeKey Debug to get an impression of the possible values)"),
)

Hierarchy

Expanded class hierarchy of Equals

File

src/Plugin/Operator/Equals.php, line 21
Contains \Drupal\themekey\Plugin\Operator\Equals.

Namespace

Drupal\themekey\Plugin\Operator
View source
class Equals extends OperatorBase {

  /**
   * @return bool
   *   TRUE if $value1 == $value2
   */
  public function evaluate($value1, $value2) {
    return $value1 == $value2;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Equals::evaluate public function Overrides OperatorInterface::evaluate
OperatorBase::getDescription public function Return the Description of the ThemeKey operator. Overrides OperatorInterface::getDescription
OperatorBase::getName public function Return the name of the ThemeKey operator. Overrides OperatorInterface::getName
OperatorBase::validate public function Validate. Overrides OperatorInterface::validate
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
SingletonPluginBase::$instances protected static property
SingletonPluginBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create