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

Was this example useful?
0
                                                    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);
            }
        }
    }
                                            
OptionValueBag's Other Methods