Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111543193
20151231.proj.01.icon.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, May 3, 03:27
Size
763 B
Mime Type
text/x-php
Expires
Mon, May 5, 03:27 (2 d)
Engine
blob
Format
Raw Data
Handle
25946185
Attached To
rPH Phabricator
20151231.proj.01.icon.php
View Options
<?php
$icon_map
=
array
(
'fa-briefcase'
=>
'project'
,
'fa-tags'
=>
'tag'
,
'fa-lock'
=>
'policy'
,
'fa-users'
=>
'group'
,
'fa-folder'
=>
'folder'
,
'fa-calendar'
=>
'timeline'
,
'fa-flag-checkered'
=>
'goal'
,
'fa-truck'
=>
'release'
,
'fa-bug'
=>
'bugs'
,
'fa-trash-o'
=>
'cleanup'
,
'fa-umbrella'
=>
'umbrella'
,
'fa-envelope'
=>
'communication'
,
'fa-building'
=>
'organization'
,
'fa-cloud'
=>
'infrastructure'
,
'fa-credit-card'
=>
'account'
,
'fa-flask'
=>
'experimental'
,
);
$table
=
new
PhabricatorProject
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
foreach
(
$icon_map
as
$old_icon
=>
$new_key
)
{
queryfx
(
$conn_w
,
'UPDATE %T SET icon = %s WHERE icon = %s'
,
$table
->
getTableName
(),
$new_key
,
$old_icon
);
}
Event Timeline
Log In to Comment