Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F452657
AphrontErrorView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
AphrontErrorView.php
View Options
<?php
final
class
AphrontErrorView
extends
AphrontView
{
const
SEVERITY_ERROR
=
'error'
;
const
SEVERITY_WARNING
=
'warning'
;
const
SEVERITY_NOTICE
=
'notice'
;
const
SEVERITY_NODATA
=
'nodata'
;
private
$title
;
private
$errors
;
private
$severity
;
private
$id
;
private
$insideDialogue
;
public
function
setInsideDialogue
(
$inside_dialogue
)
{
$this
->
insideDialogue
=
$inside_dialogue
;
return
$this
;
}
public
function
getInsideDialogue
()
{
return
$this
->
insideDialogue
;
}
public
function
setTitle
(
$title
)
{
$this
->
title
=
$title
;
return
$this
;
}
public
function
setSeverity
(
$severity
)
{
$this
->
severity
=
$severity
;
return
$this
;
}
public
function
setErrors
(
array
$errors
)
{
$this
->
errors
=
$errors
;
return
$this
;
}
public
function
setID
(
$id
)
{
$this
->
id
=
$id
;
return
$this
;
}
private
function
getBaseClass
()
{
if
(
$this
->
getInsideDialogue
())
{
$class
=
'aphront-error-view-dialogue'
;
}
else
{
$class
=
'aphront-error-view'
;
}
return
$class
;
}
final
public
function
render
()
{
require_celerity_resource
(
'aphront-error-view-css'
);
$errors
=
$this
->
errors
;
if
(
$errors
)
{
$list
=
array
();
foreach
(
$errors
as
$error
)
{
$list
[]
=
phutil_tag
(
'li'
,
array
(),
$error
);
}
$list
=
phutil_tag
(
'ul'
,
array
(
'class'
=>
'aphront-error-view-list'
,
),
$list
);
}
else
{
$list
=
null
;
}
$title
=
$this
->
title
;
if
(
strlen
(
$title
))
{
$title
=
phutil_tag
(
'h1'
,
array
(
'class'
=>
'aphront-error-view-head'
,
),
$title
);
}
else
{
$title
=
null
;
}
$this
->
severity
=
nonempty
(
$this
->
severity
,
self
::
SEVERITY_ERROR
);
$classes
=
array
();
$classes
[]
=
$this
->
getBaseClass
();
$classes
[]
=
'aphront-error-severity-'
.
$this
->
severity
;
$classes
=
implode
(
' '
,
$classes
);
$children
=
$this
->
renderHTMLChildren
();
$children
[]
=
$list
;
return
phutil_tag
(
'div'
,
array
(
'id'
=>
$this
->
id
,
'class'
=>
$classes
,
),
array
(
$title
,
phutil_tag
(
'div'
,
array
(
'class'
=>
'aphront-error-view-body'
,
),
$children
),
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 12:55 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68925
Default Alt Text
AphrontErrorView.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment