• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/History/Action/MultiplyAction.php
  • Класс: BitrixLandingHistoryActionMultiplyAction
  • Вызов: MultiplyAction::execute
public function execute(bool $undo = true): bool
{
	foreach ($this->params as $param)
	{
		if (is_array($param) && $param['ACTION'] && $param['ACTION_PARAMS'])
		{
			$action = ActionFactory::getAction($param['ACTION'], $undo);
			if ($action)
			{
				$action->setParams($param['ACTION_PARAMS'], true);
				$action->execute($undo);
			}
		}
	}

	return true;
}