public function LoopThroughViewResult::getVariables in Business Rules 2.x
Same name and namespace in other branches
- 8 src/Plugin/BusinessRulesAction/LoopThroughViewResult.php \Drupal\business_rules\Plugin\BusinessRulesAction\LoopThroughViewResult::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/ LoopThroughViewResult.php, line 306
Class
- LoopThroughViewResult
- Class LoopThroughViewResult.
Namespace
Drupal\business_rules\Plugin\BusinessRulesActionCode
public function getVariables(ItemInterface $item) {
$variableSet = new VariablesSet();
$variableObj = new VariableObject($item
->getSettings('variable'));
$variableSet
->append($variableObj);
return $variableSet;
}