Programming Language PHP
Namespace Oro\Component\Layout
Class OptionValueBag
Method/Function all
Total Examples 1
1 code examples of PHP Oro\Component\Layout\OptionValueBag::all extracted from open source projects
protected function processOptionValueBag(
OptionValueBag $value,
ContextInterface $context,
?DataAccessorInterface $data,
bool $evaluate,
?string $encoding
): void {
foreach ($value->all() as $action) {
$args = $action->getArguments();
foreach ($args as $index => $arg) {
$this->processValue($arg, $context, $data, $evaluate, $encoding);
$action->setArgument($index, $arg);
}
}
}