Ejemplo n.º 1
0
 /**
  * Add action - add the new service
  *
  * @package     las
  * @version     1.0
  */
 public function addAction()
 {
     $clients = Clients::find(['status=:status:', 'bind' => ['status' => Clients::ACTIVE]]);
     $devices = Devices::find(['status=:status:', 'bind' => ['status' => Devices::ACTIVE]]);
     if (!count($clients)) {
         $this->flashSession->notice($this->tag->linkTo(['#', 'class' => 'close', 'title' => __("Close"), '×']) . '<strong>' . __('Notice') . '!</strong> ' . __("Please add the client first") . ': ' . $this->tag->linkTo('admin/clients/add', __('Add')));
     }
     if (!count($devices)) {
         $this->flashSession->notice($this->tag->linkTo(['#', 'class' => 'close', 'title' => __("Close"), '×']) . '<strong>' . __('Notice') . '!</strong> ' . __("Please add the device first") . ': ' . $this->tag->linkTo('admin/devices/add', __('Add')));
     }
     // Set title, pick view and send variables
     $this->tag->setTitle(__('Services') . ' / ' . __('Add'));
     $this->view->pick('services/write');
     $this->view->setVars(['clients' => $clients, 'devices' => $devices, 'chain' => Services::chain(true), 'direction' => Services::direction(true), 'status' => Services::status(true), 'priority' => Services::priority(true), 'protocol' => Services::protocol(true), 'portDirection' => Services::portDirection(true)]);
     // Check if the form has been sent
     if ($this->request->isPost() === true && $this->request->hasPost('submit')) {
         $service = new Services();
         $service->__set('clients', $clients);
         $service->__set('devices', $devices);
         $valid = $service->write();
         // Check if data are valid
         if ($valid instanceof Services) {
             unset($_POST);
             $this->flashSession->success($this->tag->linkTo(['#', 'class' => 'close', 'title' => __("Close"), '×']) . '<strong>' . __('Success') . '!</strong> ' . __("The data has been saved."));
         } else {
             $this->view->setVar('errors', $valid);
             $this->flashSession->warning($this->tag->linkTo(['#', 'class' => 'close', 'title' => __("Close"), '×']) . '<strong>' . __('Warning') . '!</strong> ' . __("Please correct the errors."));
         }
     } else {
         $this->tag->setDefaults(['priority' => $this->las['qos']['defaultClass'], 'sorting' => 100]);
     }
 }