Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93187626
PhabricatorApplicationPholio.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 26, 21:11
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 21:11 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22592144
Attached To
rPH Phabricator
PhabricatorApplicationPholio.php
View Options
<?php
/**
* @group pholio
*/
final
class
PhabricatorApplicationPholio
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/pholio/'
;
}
public
function
getShortDescription
()
{
return
'Design Review'
;
}
public
function
getIconName
()
{
return
'pholio'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
9D
\x
A6"
;
}
public
function
getFlavorText
()
{
return
pht
(
'Things before they were cool.'
);
}
public
function
getApplicationGroup
()
{
// TODO: Move to CORE, this just keeps it out of the side menu.
return
self
::
GROUP_COMMUNICATION
;
}
public
function
isBeta
()
{
return
true
;
}
public
function
getRoutes
()
{
return
array
(
'/M(?P<id>[1-9]
\d
*)'
=>
'PholioMockViewController'
,
'/pholio/'
=>
array
(
''
=>
'PholioMockListController'
,
'view/(?P<view>
\w
+)/'
=>
'PholioMockListController'
,
'new/'
=>
'PholioMockEditController'
,
'edit/(?P<id>
\d
+)/'
=>
'PholioMockEditController'
,
'comment/(?P<id>
\d
+)/'
=>
'PholioMockCommentController'
,
'inline/(?P<id>
\d
+)/'
=>
'PholioInlineController'
,
'inline/save/'
=>
'PholioInlineSaveController'
,
),
);
}
}
Event Timeline
Log In to Comment