Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92310608
PhabricatorApplicationOwners.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
Tue, Nov 19, 07:30
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 21, 07:30 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22417474
Attached To
rPH Phabricator
PhabricatorApplicationOwners.php
View Options
<?php
final
class
PhabricatorApplicationOwners
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/owners/'
;
}
public
function
getIconName
()
{
return
'owners'
;
}
public
function
getShortDescription
()
{
return
pht
(
'Group Source Code'
);
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
98
\x
81"
;
}
public
function
getHelpURI
()
{
return
PhabricatorEnv
::
getDoclink
(
'Owners Tool User Guide'
);
}
public
function
getFlavorText
()
{
return
pht
(
'Adopt today!'
);
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_ORGANIZATION
;
}
public
function
getRoutes
()
{
return
array
(
'/owners/'
=>
array
(
''
=>
'PhabricatorOwnersListController'
,
'view/(?P<view>[^/]+)/'
=>
'PhabricatorOwnersListController'
,
'edit/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorOwnersEditController'
,
'new/'
=>
'PhabricatorOwnersEditController'
,
'package/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorOwnersDetailController'
,
'delete/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorOwnersDeleteController'
,
),
);
}
}
Event Timeline
Log In to Comment