Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2354570
PhabricatorNuanceApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorNuanceApplication.php
View Options
<?php
final
class
PhabricatorNuanceApplication
extends
PhabricatorApplication
{
public
function
getName
()
{
return
pht
(
'Nuance'
);
}
public
function
getFontIcon
()
{
return
'fa-fax'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
98
\x
8E"
;
}
public
function
isPrototype
()
{
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
(
'(?:query/(?P<queryKey>[^/]+)/)?'
=>
'NuanceSourceListController'
,
'view/(?P<id>[1-9]
\d
*)/'
=>
'NuanceSourceViewController'
,
'edit/(?P<id>[1-9]
\d
*)/'
=>
'NuanceSourceEditController'
,
'new/(?P<type>[^/]+)/'
=>
'NuanceSourceEditController'
,
'create/'
=>
'NuanceSourceCreateController'
,
),
'queue/'
=>
array
(
'(?:query/(?P<queryKey>[^/]+)/)?'
=>
'NuanceQueueListController'
,
'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'
,
),
),
'/action/'
=>
array
(
'(?P<id>[1-9]
\d
*)/(?P<path>.*)'
=>
'NuanceSourceActionController'
,
),
);
}
protected
function
getCustomCapabilities
()
{
return
array
(
NuanceSourceDefaultViewCapability
::
CAPABILITY
=>
array
(
'caption'
=>
pht
(
'Default view policy for newly created sources.'
),
),
NuanceSourceDefaultEditCapability
::
CAPABILITY
=>
array
(
'caption'
=>
pht
(
'Default edit policy for newly created sources.'
),
),
NuanceSourceManageCapability
::
CAPABILITY
=>
array
(),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Sep 16, 1:25 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
446411
Default Alt Text
PhabricatorNuanceApplication.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment