You are here

public function LoopThroughFieldVariable::getVariables in Business Rules 2.x

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

Return a variable set with all used variables on the item.

If you are using variables in a textfield, you can use the regex as the following:

preg_match_all(BusinessRulesItemPluginInterface::VARIABLE_REGEX, $text, $variables);

The $variables array will be filled with all used variables at index [1]

Parameters

\Drupal\business_rules\ItemInterface $item: The business rule item.

Return value

\Drupal\business_rules\VariablesSet The variableSet with all variables used on the Item.

Overrides BusinessRulesItemPluginBase::getVariables

File

src/Plugin/BusinessRulesAction/LoopThroughFieldVariable.php, line 295

Class

LoopThroughFieldVariable
Class LoopThroughFieldVariable.

Namespace

Drupal\business_rules\Plugin\BusinessRulesAction

Code

public function getVariables(ItemInterface $item) {
  $variableSet = new VariablesSet();
  $variableObj = new VariableObject($item
    ->getSettings('variable'));
  $variableSet
    ->append($variableObj);
  return $variableSet;
}