protected function &getFrontcontrollerActions()
 {
     $actions = [];
     $action = new TestFrontControllerAction();
     $action->setActionNamespace($this->actionNamespace);
     $action->setActionName($this->actionName);
     $action->setKeepInUrl(true);
     // to test action inclusion
     $action->setInput(new FrontcontrollerInput());
     $actions[] = $action;
     return $actions;
 }
 protected function &getFrontcontrollerActions()
 {
     $actions = [];
     $action = new TestFrontControllerAction();
     $action->setActionNamespace('APF\\cms\\core\\biz\\setmodel');
     $action->setActionName('setModel');
     $action->setKeepInUrl(true);
     // to test action inclusion
     $input = new FrontcontrollerInput();
     $input->setParameter('page.config.section', 'external');
     $action->setInput($input);
     $actions[] = $action;
     return $actions;
 }