1
|
|
|
<?php
|
2
|
|
|
/**
|
3
|
|
|
* @author Sergey Glagolev <[email protected]>
|
4
|
|
|
* @link https://github.com/shogodev/argilla/
|
5
|
|
|
* @copyright Copyright © 2003-2014 Shogo
|
6
|
|
|
* @license http://argilla.ru/LICENSE
|
7
|
|
|
* @package frontend.controllers
|
8
|
|
|
*
|
9
|
|
|
* @property string $errorCode
|
10
|
|
|
* @property string $errorMessage
|
11
|
|
|
*/
|
12
|
|
|
class ErrorController extends FController
|
13
|
|
|
{
|
14
|
|
|
public $layout = '404';
|
15
|
|
|
|
16
|
|
|
/**
|
17
|
|
|
* @var int
|
18
|
|
|
*/
|
19
|
|
|
protected $errorCode;
|
20
|
|
|
|
21
|
|
|
/**
|
22
|
|
|
* @var string
|
23
|
|
|
*/
|
24
|
|
|
protected $errorMessage;
|
25
|
|
|
|
26
|
|
|
/**
|
27
|
|
|
* @var array
|
28
|
|
|
*/
|
29
|
|
|
protected $error;
|
30
|
|
|
|
31
|
|
|
public function actionError()
|
32
|
|
|
{
|
33
|
|
|
$this->initError();
|
34
|
|
|
|
35
|
|
|
if( $this->error['type'] == 'ErrorSessionException' && !YII_DEBUG )
|
36
|
|
|
{
|
37
|
|
|
$returnUrl = Yii::app()->user->returnUrl;
|
38
|
|
|
Yii::app()->session->clear();
|
39
|
|
|
Yii::app()->session->closeSession();
|
40
|
|
|
Yii::app()->request->redirect($returnUrl);
|
41
|
|
|
}
|
42
|
|
|
|
43
|
|
|
if( Yii::app()->request->isAjaxRequest )
|
44
|
|
|
{
|
45
|
|
|
echo $this->errorMessage;
|
46
|
|
|
Yii::app()->end();
|
|
|
|
|
47
|
|
|
}
|
48
|
|
|
|
49
|
|
|
if( YII_DEBUG )
|
50
|
|
|
$this->render('errorDebug', $this->error);
|
51
|
|
|
else
|
52
|
|
|
{
|
53
|
|
|
$methodName = 'error'.$this->errorCode;
|
54
|
|
|
|
55
|
|
|
if( method_exists($this, $methodName) )
|
56
|
|
|
$this->$methodName();
|
57
|
|
|
else
|
58
|
|
|
$this->error404();
|
59
|
|
|
}
|
60
|
|
|
}
|
61
|
|
|
|
62
|
|
|
public function getErrorCode()
|
63
|
|
|
{
|
64
|
|
|
return $this->errorCode;
|
65
|
|
|
}
|
66
|
|
|
|
67
|
|
|
public function getErrorMessage()
|
68
|
|
|
{
|
69
|
|
|
return $this->errorMessage;
|
70
|
|
|
}
|
71
|
|
|
|
72
|
|
|
protected function error404()
|
73
|
|
|
{
|
74
|
|
|
$this->render('error404');
|
75
|
|
|
}
|
76
|
|
|
|
77
|
|
|
protected function error401()
|
78
|
|
|
{
|
79
|
|
|
$this->render('error401', array(
|
80
|
|
|
'loginForm' => method_exists($this, 'getLoginForm') ? $this->getLoginForm() : null,
|
81
|
|
|
));
|
82
|
|
|
}
|
83
|
|
|
|
84
|
|
|
protected function initError()
|
85
|
|
|
{
|
86
|
|
|
if( !empty(Yii::app()->errorHandler->error) )
|
87
|
|
|
{
|
88
|
|
|
$this->error = Yii::app()->errorHandler->error;
|
89
|
|
|
$this->errorCode = Yii::app()->errorHandler->error['code'];
|
90
|
|
|
$this->errorMessage = Yii::app()->errorHandler->error['message'];
|
91
|
|
|
}
|
92
|
|
|
}
|
93
|
|
|
} |
It seems like the method you are trying to call exists only in some of the possible types.
Let’s take a look at an example:
Available Fixes
Add an additional type-check:
Only allow a single type to be passed if the variable comes from a parameter: