Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3281198
PhabricatorConpherenceApplication.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
2 KB
Referenced Files
None
Subscribers
None
PhabricatorConpherenceApplication.php
View Options
<?php
final
class
PhabricatorConpherenceApplication
extends
PhabricatorApplication
{
public
function
getBaseURI
(
)
{
return
'/conpherence/'
;
}
public
function
getName
(
)
{
return
pht
(
'Conpherence'
)
;
}
public
function
getShortDescription
(
)
{
return
pht
(
'Chat with Others'
)
;
}
public
function
getIcon
(
)
{
return
'fa-comments'
;
}
public
function
getTitleGlyph
(
)
{
return
"\xE2\x9C\x86"
;
}
public
function
getRemarkupRules
(
)
{
return
array
(
new
ConpherenceThreadRemarkupRule
(
)
,
)
;
}
public
function
getMonograms
(
)
{
return
array
(
'Z'
)
;
}
public
function
getRoutes
(
)
{
return
array
(
'/Z(?P<id>[1-9]\d*)'
=>
'ConpherenceViewController'
,
'/conpherence/'
=>
array
(
''
=>
'ConpherenceListController'
,
'thread/(?P<id>[1-9]\d*)/'
=>
'ConpherenceListController'
,
'threadsearch/(?P<id>[1-9]\d*)/'
=>
'ConpherenceThreadSearchController'
,
'(?P<id>[1-9]\d*)/'
=>
'ConpherenceViewController'
,
'(?P<id>[1-9]\d*)/(?P<messageID>[1-9]\d*)/'
=>
'ConpherenceViewController'
,
'columnview/'
=>
'ConpherenceColumnViewController'
,
$this
->
getEditRoutePattern
(
'new/'
)
=>
'ConpherenceRoomEditController'
,
$this
->
getEditRoutePattern
(
'edit/'
)
=>
'ConpherenceRoomEditController'
,
'picture/(?P<id>[1-9]\d*)/'
=>
'ConpherenceRoomPictureController'
,
'search/(?:query/(?P<queryKey>[^/]+)/)?'
=>
'ConpherenceRoomListController'
,
'panel/'
=>
'ConpherenceNotificationPanelController'
,
'participant/(?P<id>[1-9]\d*)/'
=>
'ConpherenceParticipantController'
,
'preferences/(?P<id>[1-9]\d*)/'
=>
'ConpherenceRoomPreferencesController'
,
'edit/(?P<id>[1-9]\d*)/'
=>
'ConpherenceUpdateController'
,
)
,
)
;
}
public
function
getQuicksandURIPatternBlacklist
(
)
{
return
array
(
'/conpherence/.*'
,
'/Z\d+'
,
)
;
}
public
function
getMailCommandObjects
(
)
{
// TODO: Conpherence threads don't currently support any commands directly,
// so the documentation page we end up generating is empty and funny
// looking. Add support here once we support "!add", "!leave", "!topic",
// or whatever else.
return
array
(
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Mar 23, 20:00 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1200050
Default Alt Text
PhabricatorConpherenceApplication.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment