當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CModel::getErrorList方法代碼示例

本文整理匯總了PHP中CModel::getErrorList方法的典型用法代碼示例。如果您正苦於以下問題:PHP CModel::getErrorList方法的具體用法?PHP CModel::getErrorList怎麽用?PHP CModel::getErrorList使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CModel的用法示例。


在下文中一共展示了CModel::getErrorList方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: render

 public function render($view, $endpage = true)
 {
     $this->data['elist'] = CModel::getErrorList();
     extract($this->data);
     if (!$this->hprint) {
         include $this->viewFolder . 'hcommon.php';
         $this->hprint = true;
     }
     $viewfile = strtolower($this->viewFolder . $this->classname . "/{$view}.php");
     if (file_exists($viewfile)) {
         include $viewfile;
     }
     if ($endpage) {
         include $this->viewFolder . 'fcommon.php';
     }
 }
開發者ID:matyukhin-maxim,項目名稱:ticket-db,代碼行數:16,代碼來源:CController.php

示例2: ajaxComplete

 public function ajaxComplete()
 {
     $role = get_param($this->authdata, 'role_id');
     $me = get_param($this->authdata, 'id');
     $depid = get_param($this->authdata, 'depid');
     $ticket_id = filter_input(INPUT_POST, 'ticket', FILTER_VALIDATE_INT);
     $info = $this->model->getTicketInfo($ticket_id);
     if (!$info) {
         return $this->preparePopup('Запрошеная заявка не найдена');
     } elseif (get_param($info, 'status') != STATUS_OPEN) {
         return $this->preparePopup('Нельзя прикрыть заявку, которая не открыта', 'alert-warning');
         //} elseif ($role !== Configuration::$ROLE_USER || get_param($info, 'department_id') !== $depid) {
     } elseif (!$this->isGrantToMe('ACE_COMPLETE', get_param($info, 'department_id'))) {
         return $this->preparePopup("Прикрыть заявку может руководитель цеха,\n который создал ее.");
     }
     // Если ошибок нет, то переводим ее в статус закрытая, установив дату закрытия
     $ok = $this->model->completeTicket($ticket_id);
     if ($ok) {
         $this->model->setTicketStatus($ticket_id, STATUS_COMPLETE);
     }
     if (count($this->model->getErrors())) {
         echo CModel::getErrorList();
     } else {
         $this->preparePopup('Заявка прикрыта', 'alert-info');
     }
 }
開發者ID:matyukhin-maxim,項目名稱:ticket-db,代碼行數:26,代碼來源:TicketController.php

示例3: actionChangeGroup

 public function actionChangeGroup()
 {
     $gname = filter_input(INPUT_POST, 'group-name', FILTER_SANITIZE_STRING);
     $group_id = filter_input(INPUT_POST, 'group-id', FILTER_VALIDATE_INT);
     if ($gname && $group_id) {
         $this->model->saveGroup($gname, $group_id);
         $elist = CModel::getErrorList();
         if ($elist) {
             $this->preparePopup($elist);
         } else {
             $this->preparePopup('Название групы сохранено.', 'alert-success');
         }
     }
     $this->redirect(['back' => 1]);
 }
開發者ID:matyukhin-maxim,項目名稱:openid,代碼行數:15,代碼來源:AdminController.php


注:本文中的CModel::getErrorList方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。