本文整理匯總了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';
}
}
示例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');
}
}
示例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]);
}