Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121823147
PhabricatorApplicationHerald.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
Mon, Jul 14, 04:29
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jul 16, 04:29 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27370660
Attached To
rPH Phabricator
PhabricatorApplicationHerald.php
View Options
<?php
final
class
PhabricatorApplicationHerald
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/herald/'
;
}
public
function
getIconName
()
{
return
'herald'
;
}
public
function
getShortDescription
()
{
return
'Create Notification Rules'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
98
\x
BF"
;
}
public
function
getHelpURI
()
{
return
PhabricatorEnv
::
getDoclink
(
'article/Herald_User_Guide.html'
);
}
public
function
getFlavorText
()
{
return
pht
(
'Watch for danger!'
);
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_ORGANIZATION
;
}
public
function
getRoutes
()
{
return
array
(
'/herald/'
=>
array
(
''
=>
'HeraldHomeController'
,
'view/(?P<content_type>[^/]+)/(?:(?P<rule_type>[^/]+)/)?'
=>
'HeraldHomeController'
,
'new/(?:(?P<type>[^/]+)/(?:(?P<rule_type>[^/]+)/)?)?'
=>
'HeraldNewController'
,
'rule/(?:(?P<id>[1-9]
\d
*)/)?'
=>
'HeraldRuleController'
,
'history/(?:(?P<id>[1-9]
\d
*)/)?'
=>
'HeraldRuleEditHistoryController'
,
'delete/(?P<id>[1-9]
\d
*)/'
=>
'HeraldDeleteController'
,
'test/'
=>
'HeraldTestConsoleController'
,
'transcript/'
=>
'HeraldTranscriptListController'
,
'transcript/(?P<id>[1-9]
\d
*)/(?:(?P<filter>
\w
+)/)?'
=>
'HeraldTranscriptController'
,
),
);
}
}
Event Timeline
Log In to Comment