Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98606844
PhabricatorNuanceApplication.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, Jan 14, 19:52
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Jan 16, 19:52 (2 d)
Engine
blob
Format
Raw Data
Handle
23605647
Attached To
rPH Phabricator
PhabricatorNuanceApplication.php
View Options
<?php
final
class
PhabricatorNuanceApplication
extends
PhabricatorApplication
{
public
function
getIconName
()
{
return
'nuance'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
98
\x
8E"
;
}
public
function
isBeta
()
{
return
true
;
}
public
function
isLaunchable
()
{
// Try to hide this even more for now.
return
false
;
}
public
function
canUninstall
()
{
return
true
;
}
public
function
getBaseURI
()
{
return
'/nuance/'
;
}
public
function
getShortDescription
()
{
return
pht
(
'High-Volume Task Queues'
);
}
public
function
getRoutes
()
{
return
array
(
'/nuance/'
=>
array
(
'item/'
=>
array
(
'view/(?P<id>[1-9]
\d
*)/'
=>
'NuanceItemViewController'
,
'edit/(?P<id>[1-9]
\d
*)/'
=>
'NuanceItemEditController'
,
'new/'
=>
'NuanceItemEditController'
,
),
'source/'
=>
array
(
'view/(?P<id>[1-9]
\d
*)/'
=>
'NuanceSourceViewController'
,
'edit/(?P<id>[1-9]
\d
*)/'
=>
'NuanceSourceEditController'
,
'new/'
=>
'NuanceSourceEditController'
,
),
'queue/'
=>
array
(
'view/(?P<id>[1-9]
\d
*)/'
=>
'NuanceQueueViewController'
,
'edit/(?P<id>[1-9]
\d
*)/'
=>
'NuanceQueueEditController'
,
'new/'
=>
'NuanceQueueEditController'
,
),
'requestor/'
=>
array
(
'view/(?P<id>[1-9]
\d
*)/'
=>
'NuanceRequestorViewController'
,
'edit/(?P<id>[1-9]
\d
*)/'
=>
'NuanceRequestorEditController'
,
'new/'
=>
'NuanceRequestorEditController'
,
),
),
);
}
protected
function
getCustomCapabilities
()
{
return
array
(
NuanceCapabilitySourceDefaultView
::
CAPABILITY
=>
array
(
'caption'
=>
pht
(
'Default view policy for newly created sources.'
),
),
NuanceCapabilitySourceDefaultEdit
::
CAPABILITY
=>
array
(
'caption'
=>
pht
(
'Default edit policy for newly created sources.'
),
),
NuanceCapabilitySourceManage
::
CAPABILITY
=>
array
(),
);
}
}
Event Timeline
Log In to Comment