Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Paste
P1931
WMFExtensionsApplication.php
Active
Public
Actions
Authored by
epriestley
on Jan 28 2016, 6:05 PM.
Edit Paste
Archive Paste
View Raw File
Subscribe
Mute Notifications
Award Token
Flag For Later
Tags
None
Referenced Files
F1079089: WMFExtensionsApplication.php
Jan 28 2016, 6:05 PM
2016-01-28 18:05:30 (UTC+0)
Subscribers
None
<?php
final
class
WMFExtensionsApplication
extends
PhabricatorApplication
{
public
function
getName
()
{
return
pht
(
'WMF Extensions'
);
}
public
function
getRoutes
()
{
return
array
(
'/wmf-extensions/'
=>
array
(
'lock-task/(?P<id>
\d
+)/'
=>
'WMFLockTaskController'
,
),
);
}
public
function
getEventListeners
()
{
return
array
(
new
WMFLockTaskEventListener
(),
);
}
}
Event Timeline
epriestley
created this paste.
Jan 28 2016, 6:05 PM
2016-01-28 18:05:30 (UTC+0)
Log In to Comment