Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F971444
PhabricatorApplicationConpherence.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorApplicationConpherence.php
View Options
<?php
/**
* @group conpherence
*/
final
class
PhabricatorApplicationConpherence
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/conpherence/'
;
}
public
function
getShortDescription
()
{
return
pht
(
'Send Messages'
);
}
public
function
getIconName
()
{
return
'conpherence'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
9C
\x
86"
;
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_COMMUNICATION
;
}
public
function
getEventListeners
()
{
return
array
(
new
ConpherenceActionMenuEventListener
(),
new
ConpherenceHovercardEventListener
(),
);
}
public
function
getRoutes
()
{
return
array
(
'/conpherence/'
=>
array
(
''
=>
'ConpherenceListController'
,
'thread/(?P<id>[1-9]
\d
*)/'
=>
'ConpherenceListController'
,
'(?P<id>[1-9]
\d
*)/'
=>
'ConpherenceViewController'
,
'new/'
=>
'ConpherenceNewController'
,
'panel/'
=>
'ConpherenceNotificationPanelController'
,
'widget/(?P<id>[1-9]
\d
*)/'
=>
'ConpherenceWidgetController'
,
'update/(?P<id>[1-9]
\d
*)/'
=>
'ConpherenceUpdateController'
,
),
);
}
public
function
getQuickCreateItems
(
PhabricatorUser
$viewer
)
{
$items
=
array
();
$item
=
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'Conpherence Thread'
))
->
setIcon
(
'fa-comments'
)
->
setWorkflow
(
true
)
->
setHref
(
$this
->
getBaseURI
().
'new/'
);
$items
[]
=
$item
;
return
$items
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 5:47 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
226042
Default Alt Text
PhabricatorApplicationConpherence.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment