本文整理汇总了PHP中ErrorHandler::logErrors方法的典型用法代码示例。如果您正苦于以下问题:PHP ErrorHandler::logErrors方法的具体用法?PHP ErrorHandler::logErrors怎么用?PHP ErrorHandler::logErrors使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ErrorHandler
的用法示例。
在下文中一共展示了ErrorHandler::logErrors方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionSendActivation
public function actionSendActivation()
{
$result = false;
$user = new FUser();
if (Yii::app()->request->isPostRequest) {
$result = app()->XService->run('User/Account/sendActivation', $_POST);
if ($result->ReturnCode !== ServiceResult::RETURN_SUCCESS) {
ErrorHandler::logErrors($result->ErrorMessages);
$user = $result->ReturnedData['User'];
}
}
Yii::app()->layout = '';
$this->render('SendAuthenticationEmail', array('user' => $user, 'result' => $result, 'action' => 'sendActivation'));
}
示例2: actionSave
public function actionSave()
{
//Make sure this action can be requested only by POST
if ($this->IsPostBack) {
// Check create a new article of edit an existing article
$url = $this->createUrl('/BackOffice/admin/modules/edit', array('Id' => $this->post('Module[Id]')));
$result = Cms::service('BackOffice/Module/update', $_POST);
if ($result->ReturnCode == ServiceResult::RETURN_SUCCESS) {
//create config file
$this->initConfigCache();
$moduleId = $this->post('Module[Id]', 0);
if ($moduleId == 0) {
$this->message = Yii::t('Module', 'MODULE_CREATE_SUCCESSFUL');
} else {
$this->message = Yii::t('Module', 'MODULE_UPDATE_SUCCESSFUL');
}
}
// log error
if ($result->ReturnCode != ServiceResult::RETURN_SUCCESS) {
ErrorHandler::logErrors($result->ErrorMessages);
}
// redirect
$this->redirect($url);
} else {
$this->redirect($this->createUrl('/BackOffice/admin/modules/all'));
}
}