Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97452409
PhabricatorConfigDatabaseController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jan 4, 11:19
Size
1023 B
Mime Type
text/x-php
Expires
Mon, Jan 6, 11:19 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23411273
Attached To
rPH Phabricator
PhabricatorConfigDatabaseController.php
View Options
<?php
abstract
class
PhabricatorConfigDatabaseController
extends
PhabricatorConfigController
{
protected
function
renderIcon
(
$status
)
{
switch
(
$status
)
{
case
PhabricatorConfigStorageSchema
::
STATUS_OKAY
:
$icon
=
'fa-check-circle green'
;
break
;
case
PhabricatorConfigStorageSchema
::
STATUS_WARN
:
$icon
=
'fa-exclamation-circle yellow'
;
break
;
case
PhabricatorConfigStorageSchema
::
STATUS_FAIL
:
default
:
$icon
=
'fa-times-circle red'
;
break
;
}
return
id
(
new
PHUIIconView
())
->
setIcon
(
$icon
);
}
protected
function
renderAttr
(
$attr
,
$issue
)
{
if
(
$issue
)
{
return
phutil_tag
(
'span'
,
array
(
'style'
=>
'color: #aa0000;'
,
),
$attr
);
}
else
{
return
$attr
;
}
}
protected
function
renderBoolean
(
$value
)
{
if
(
$value
===
null
)
{
return
''
;
}
else
if
(
$value
===
true
)
{
return
pht
(
'Yes'
);
}
else
{
return
pht
(
'No'
);
}
}
}
Event Timeline
Log In to Comment