Ejemplo n.º 1
0
 public function moveShowAction()
 {
     $deltaDay = $this->_getParam('day');
     $deltaMin = $this->_getParam('min');
     $showInstanceId = $this->_getParam('showInstanceId');
     $userInfo = Zend_Auth::getInstance()->getStorage()->read();
     $user = new Application_Model_User($userInfo->id);
     if ($user->isUserType(array(UTYPE_ADMIN, UTYPE_PROGRAM_MANAGER))) {
         try {
             $showInstance = new Application_Model_ShowInstance($showInstanceId);
         } catch (Exception $e) {
             $this->view->show_error = true;
             return false;
         }
         $error = $showInstance->moveShow($deltaDay, $deltaMin);
     }
     if (isset($error)) {
         $this->view->error = $error;
     }
 }