Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98084300
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
Thu, Jan 9, 15:10
Size
763 B
Mime Type
text/x-php
Expires
Sat, Jan 11, 15:10 (2 d)
Engine
blob
Format
Raw Data
Handle
23496942
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