Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3281197
PhabricatorConduitApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorConduitApplication.php
View Options
<?php
final
class
PhabricatorConduitApplication
extends
PhabricatorApplication
{
public
function
getBaseURI
(
)
{
return
'/conduit/'
;
}
public
function
getIcon
(
)
{
return
'fa-tty'
;
}
public
function
canUninstall
(
)
{
return
false
;
}
public
function
getHelpDocumentationArticles
(
PhabricatorUser
$viewer
)
{
return
array
(
array
(
'name'
=>
pht
(
'Conduit API Overview'
)
,
'href'
=>
PhabricatorEnv
::
getDoclink
(
'Conduit API Overview'
)
,
)
,
)
;
}
public
function
getName
(
)
{
return
pht
(
'Conduit'
)
;
}
public
function
getShortDescription
(
)
{
return
pht
(
'Developer API'
)
;
}
public
function
getTitleGlyph
(
)
{
return
"\xE2\x87\xB5"
;
}
public
function
getApplicationGroup
(
)
{
return
self
::
GROUP_DEVELOPER
;
}
public
function
getApplicationOrder
(
)
{
return
0.100
;
}
public
function
getRoutes
(
)
{
return
array
(
'/conduit/'
=>
array
(
$this
->
getQueryRoutePattern
(
)
=>
'PhabricatorConduitListController'
,
'method/(?P<method>[^/]+)/'
=>
'PhabricatorConduitConsoleController'
,
'log/'
=>
array
(
$this
->
getQueryRoutePattern
(
)
=>
'PhabricatorConduitLogController'
,
'view/(?P<view>[^/]+)/'
=>
'PhabricatorConduitLogController'
,
)
,
'token/'
=>
array
(
''
=>
'PhabricatorConduitTokenController'
,
'edit/(?:(?P<id>\d+)/)?'
=>
'PhabricatorConduitTokenEditController'
,
'terminate/(?:(?P<id>\d+)/)?'
=>
'PhabricatorConduitTokenTerminateController'
,
)
,
'login/'
=>
'PhabricatorConduitTokenHandshakeController'
,
)
,
'/api/(?P<method>[^/]+)'
=>
'PhabricatorConduitAPIController'
,
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Mar 23, 19:58 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1114281
Default Alt Text
PhabricatorConduitApplication.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment