Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
340278b5
Commit
340278b5
authored
Apr 30, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #3183: fixed regression after #3175
parent
468e4191
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
13 deletions
+33
-13
error.php
framework/views/errorHandler/error.php
+2
-3
exception.php
framework/views/errorHandler/exception.php
+15
-8
previousException.php
framework/views/errorHandler/previousException.php
+3
-2
ErrorHandler.php
framework/web/ErrorHandler.php
+13
-0
No files found.
framework/views/errorHandler/error.php
View file @
340278b5
...
...
@@ -8,9 +8,8 @@ if ($exception instanceof \yii\web\HttpException) {
}
else
{
$code
=
$exception
->
getCode
();
}
if
(
$exception
instanceof
\yii\base\Exception
)
{
$name
=
$exception
->
getName
();
}
else
{
$name
=
$handler
->
getExceptionName
(
$exception
);
if
(
$name
===
null
)
{
$name
=
'Error'
;
}
if
(
$code
)
{
...
...
framework/views/errorHandler/exception.php
View file @
340278b5
...
...
@@ -12,12 +12,16 @@
<meta
charset=
"utf-8"
/>
<title>
<?php
$name
=
$handler
->
getExceptionName
(
$exception
);
if
(
$exception
instanceof
\yii\web\HttpException
)
{
echo
(
int
)
$exception
->
statusCode
.
' '
.
$handler
->
htmlEncode
(
$exception
->
getName
());
}
elseif
(
$exception
instanceof
\yii\base\Exception
)
{
echo
$handler
->
htmlEncode
(
$exception
->
getName
()
.
' – '
.
get_class
(
$exception
));
echo
(
int
)
$exception
->
statusCode
.
' '
.
$handler
->
htmlEncode
(
$name
);
}
else
{
echo
$handler
->
htmlEncode
(
get_class
(
$exception
));
$name
=
$handler
->
getExceptionName
(
$exception
);
if
(
$name
!==
null
)
{
echo
$handler
->
htmlEncode
(
$name
.
' – '
.
get_class
(
$exception
));
}
else
{
echo
$handler
->
htmlEncode
(
get_class
(
$exception
));
}
}
?>
</title>
...
...
@@ -331,11 +335,14 @@ html,body{
if
(
$exception
instanceof
\yii\web\HttpException
)
{
echo
'<span>'
.
$handler
->
createHttpStatusLink
(
$exception
->
statusCode
,
$handler
->
htmlEncode
(
$exception
->
getName
()))
.
'</span>'
;
echo
' – '
.
$handler
->
addTypeLinks
(
get_class
(
$exception
));
}
elseif
(
$exception
instanceof
\yii\base\Exception
)
{
echo
'<span>'
.
$handler
->
htmlEncode
(
$exception
->
getName
())
.
'</span>'
;
echo
' – '
.
$handler
->
addTypeLinks
(
get_class
(
$exception
));
}
else
{
echo
'<span>'
.
$handler
->
htmlEncode
(
get_class
(
$exception
))
.
'</span>'
;
$name
=
$handler
->
getExceptionName
(
$exception
);
if
(
$name
!==
null
)
{
echo
'<span>'
.
$handler
->
htmlEncode
(
$name
)
.
'</span>'
;
echo
' – '
.
$handler
->
addTypeLinks
(
get_class
(
$exception
));
}
else
{
echo
'<span>'
.
$handler
->
htmlEncode
(
get_class
(
$exception
))
.
'</span>'
;
}
}
?>
</h1>
<?php
endif
;
?>
...
...
framework/views/errorHandler/previousException.php
View file @
340278b5
...
...
@@ -8,8 +8,9 @@
<span
class=
"arrow"
>
↵
</span>
<h2>
<span>
Caused by:
</span>
<?php
if
(
$exception
instanceof
\yii\base\Exception
)
:
?>
<span>
<?=
$handler
->
htmlEncode
(
$exception
->
getName
())
?>
</span>
–
<?php
$name
=
$handler
->
getExceptionName
(
$exception
);
if
(
$name
!==
null
)
:
?>
<span>
<?=
$handler
->
htmlEncode
(
$name
)
?>
</span>
–
<?=
$handler
->
addTypeLinks
(
get_class
(
$exception
))
?>
<?php
else
:
?>
<span>
<?=
$handler
->
htmlEncode
(
get_class
(
$exception
))
?>
</span>
...
...
framework/web/ErrorHandler.php
View file @
340278b5
...
...
@@ -379,4 +379,17 @@ class ErrorHandler extends \yii\base\ErrorHandler
return
$out
;
}
/**
* Returns human-readable exception name
* @param \Exception $exception
* @return string human-readable exception name or null if it cannot be determined
*/
public
function
getExceptionName
(
$exception
)
{
if
(
$exception
instanceof
\yii\base\Exception
||
$exception
instanceof
\yii\base\InvalidCallException
||
$exception
instanceof
\yii\base\InvalidParamException
||
$exception
instanceof
\yii\base\UnknownMethodException
)
{
return
$exception
->
getName
();
}
return
null
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment