Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98293225
20140722.appname.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 11, 20:30
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Jan 13, 20:30 (2 d)
Engine
blob
Format
Raw Data
Handle
23517647
Attached To
rPH Phabricator
20140722.appname.php
View Options
<?php
$applications
=
array
(
'Audit'
,
'Auth'
,
'Calendar'
,
'ChatLog'
,
'Conduit'
,
'Config'
,
'Conpherence'
,
'Countdown'
,
'Daemons'
,
'Dashboard'
,
'Differential'
,
'Diffusion'
,
'Diviner'
,
'Doorkeeper'
,
'Drydock'
,
'Fact'
,
'Feed'
,
'Files'
,
'Flags'
,
'Harbormaster'
,
'Help'
,
'Herald'
,
'Home'
,
'Legalpad'
,
'Macro'
,
'MailingLists'
,
'Maniphest'
,
'Applications'
,
'MetaMTA'
,
'Notifications'
,
'Nuance'
,
'OAuthServer'
,
'Owners'
,
'Passphrase'
,
'Paste'
,
'People'
,
'Phame'
,
'Phlux'
,
'Pholio'
,
'Phortune'
,
'PHPAST'
,
'Phragment'
,
'Phrequent'
,
'Phriction'
,
'Policy'
,
'Ponder'
,
'Project'
,
'Releeph'
,
'Repositories'
,
'Search'
,
'Settings'
,
'Slowvote'
,
'Subscriptions'
,
'Support'
,
'System'
,
'Test'
,
'Tokens'
,
'Transactions'
,
'Typeahead'
,
'UIExamples'
,
'XHProf'
,
);
$map
=
array
();
foreach
(
$applications
as
$application
)
{
$old_name
=
'PhabricatorApplication'
.
$application
;
$new_name
=
'Phabricator'
.
$application
.
'Application'
;
$map
[
$old_name
]
=
$new_name
;
}
/* -( User preferences )--------------------------------------------------- */
// This originally migrated pinned applications in user preferences, but was
// removed to simplify preference changes after about 22 months.
/* -( Dashboard installs )------------------------------------------------- */
echo
pht
(
'Migrating dashboard installs...'
).
"
\n
"
;
$table
=
new
PhabricatorDashboardInstall
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$dashboard_install
)
{
$application
=
$dashboard_install
->
getApplicationClass
();
queryfx
(
$conn_w
,
'UPDATE %T SET applicationClass = %s WHERE id = %d'
,
$table
->
getTableName
(),
idx
(
$map
,
$application
,
$application
),
$dashboard_install
->
getID
());
}
/* -( Phabricator configuration )------------------------------------------ */
$config_key
=
'phabricator.uninstalled-applications'
;
echo
pht
(
'Migrating `%s` config...'
,
$config_key
).
"
\n
"
;
$config
=
PhabricatorConfigEntry
::
loadConfigEntry
(
$config_key
);
$old_config
=
$config
->
getValue
();
$new_config
=
array
();
if
(
$old_config
)
{
foreach
(
$old_config
as
$application
=>
$uninstalled
)
{
$new_config
[
idx
(
$map
,
$application
,
$application
)]
=
$uninstalled
;
}
$config
->
setIsDeleted
(
0
)
->
setValue
(
$new_config
)
->
save
();
}
/* -( phabricator.application-settings )----------------------------------- */
$config_key
=
'phabricator.application-settings'
;
echo
pht
(
'Migrating `%s` config...'
,
$config_key
).
"
\n
"
;
$config
=
PhabricatorConfigEntry
::
loadConfigEntry
(
$config_key
);
$old_config
=
$config
->
getValue
();
$new_config
=
array
();
if
(
$old_config
)
{
foreach
(
$old_config
as
$application
=>
$settings
)
{
$application
=
preg_replace
(
'/^PHID-APPS-/'
,
''
,
$application
);
$new_config
[
'PHID-APPS-'
.
idx
(
$map
,
$application
,
$application
)]
=
$settings
;
}
$config
->
setIsDeleted
(
0
)
->
setValue
(
$new_config
)
->
save
();
}
Event Timeline
Log In to Comment