Page MenuHomec4science

PhabricatorApplicationConpherence.php
No OneTemporary

File Metadata

Created
Sat, Jun 29, 17:12

PhabricatorApplicationConpherence.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 getEventListeners() {
return array(
new ConpherencePeopleMenuEventListener(),
);
}
public function getRoutes() {
return array(
'/conpherence/' => array(
'' => 'ConpherenceListController',
'new/' => 'ConpherenceNewController',
'view/(?P<id>[1-9]\d*)/' => 'ConpherenceViewController',
'widget/(?P<id>[1-9]\d*)/' => 'ConpherenceWidgetController',
'update/(?P<id>[1-9]\d*)/' => 'ConpherenceUpdateController',
'(?P<id>[1-9]\d*)/' => 'ConpherenceListController',
),
);
}
}

Event Timeline