You are here

public function BusinessRulesVariablePlugin::changeDetails in Business Rules 2.x

Same name and namespace in other branches
  1. 8 src/Plugin/BusinessRulesVariablePlugin.php \Drupal\business_rules\Plugin\BusinessRulesVariablePlugin::changeDetails()

Change the variable details box.

Give a chance to each variable plugin to change the variable details row on Available Variables Box.

Parameters

\Drupal\business_rules\Entity\Variable $variable: The variable.

array $row: The row which contains the variable.

Overrides BusinessRulesVariablePluginInterface::changeDetails

5 methods override BusinessRulesVariablePlugin::changeDetails()
EntityEmptyVariable::changeDetails in src/Plugin/BusinessRulesVariable/EntityEmptyVariable.php
Change the variable details box.
EntityFieldVariable::changeDetails in src/Plugin/BusinessRulesVariable/EntityFieldVariable.php
Change the variable details box.
UrlVariable::changeDetails in src/Plugin/BusinessRulesVariable/UrlVariable.php
Change the variable details box.
UserVariable::changeDetails in src/Plugin/BusinessRulesVariable/UserVariable.php
Change the variable details box.
ViewResultVariable::changeDetails in src/Plugin/BusinessRulesVariable/ViewResultVariable.php
Change the variable details box.

File

src/Plugin/BusinessRulesVariablePlugin.php, line 21

Class

BusinessRulesVariablePlugin
Base class for Business rules variable plugins.

Namespace

Drupal\business_rules\Plugin

Code

public function changeDetails(Variable $variable, array &$row) {
}