mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
49 lines
1 KiB
PHP
49 lines
1 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @group conpherence
|
||
|
*/
|
||
|
final class PhabricatorApplicationConpherence extends PhabricatorApplication {
|
||
|
|
||
|
public function isBeta() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function getBaseURI() {
|
||
|
return '/conpherence/';
|
||
|
}
|
||
|
|
||
|
public function getQuickCreateURI() {
|
||
|
return $this->getBaseURI().'new/';
|
||
|
}
|
||
|
|
||
|
public function getShortDescription() {
|
||
|
return pht('Messaging');
|
||
|
}
|
||
|
|
||
|
public function getIconName() {
|
||
|
return 'conpherence';
|
||
|
}
|
||
|
|
||
|
public function getTitleGlyph() {
|
||
|
return "\xE2\x98\x8E";
|
||
|
}
|
||
|
|
||
|
public function getApplicationGroup() {
|
||
|
return self::GROUP_COMMUNICATION;
|
||
|
}
|
||
|
|
||
|
public function getRoutes() {
|
||
|
return array(
|
||
|
'/conpherence/' => array(
|
||
|
'' => 'ConpherenceListController',
|
||
|
'new/' => 'ConpherenceNewController',
|
||
|
'view/(?P<id>[1-9]\d*)/' => 'ConpherenceViewController',
|
||
|
'update/(?P<id>[1-9]\d*)/' => 'ConpherenceUpdateController',
|
||
|
'(?P<id>[1-9]\d*)/' => 'ConpherenceListController',
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|