Page MenuHomePhorge

PhabricatorPonderApplication.php
No OneTemporary

Size
3 KB
Referenced Files
None
Subscribers
None

PhabricatorPonderApplication.php

<?php
final class PhabricatorPonderApplication extends PhabricatorApplication {
public function getBaseURI() {
return '/ponder/';
}
public function getName() {
return pht('Ponder');
}
public function getShortDescription() {
return pht('Questions and Answers');
}
public function getIcon() {
return 'fa-university';
}
public function getTitleGlyph() {
return "\xE2\x97\xB3";
}
public function getRemarkupRules() {
return array(
new PonderRemarkupRule(),
);
}
public function getApplicationGroup() {
return self::GROUP_UTILITIES;
}
public function supportsEmailIntegration() {
return true;
}
public function getAppEmailBlurb() {
return pht(
'Send email to these addresses to create questions. %s',
phutil_tag(
'a',
array(
'href' => $this->getInboundEmailSupportLink(),
),
pht('Learn More')));
}
public function getMonograms() {
return array('Q');
}
public function getRoutes() {
return array(
'/Q(?P<id>[1-9]\d*)'
=> 'PonderQuestionViewController',
'/ponder/' => array(
'(?:query/(?P<queryKey>[^/]+)/)?'
=> 'PonderQuestionListController',
'answer/' => array(
'add/'
=> 'PonderAnswerSaveController',
'edit/(?P<id>\d+)/'
=> 'PonderAnswerEditController',
'comment/(?P<id>\d+)/'
=> 'PonderAnswerCommentController',
'history/(?P<id>\d+)/'
=> 'PonderAnswerHistoryController',
),
'question/' => array(
$this->getEditRoutePattern('edit/')
=> 'PonderQuestionEditController',
'create/'
=> 'PonderQuestionEditController',
'comment/(?P<id>\d+)/'
=> 'PonderQuestionCommentController',
'history/(?P<id>\d+)/'
=> 'PonderQuestionHistoryController',
),
'preview/'
=> 'PhabricatorMarkupPreviewController',
'question/status/(?P<id>[1-9]\d*)/'
=> 'PonderQuestionStatusController',
),
);
}
public function getMailCommandObjects() {
return array(
'question' => array(
'name' => pht('Email Commands: Questions'),
'header' => pht('Interacting with Ponder Questions'),
'object' => new PonderQuestion(),
'summary' => pht(
'This page documents the commands you can use to interact with '.
'questions in Ponder.'),
),
);
}
protected function getCustomCapabilities() {
return array(
PonderDefaultViewCapability::CAPABILITY => array(
'template' => PonderQuestionPHIDType::TYPECONST,
'capability' => PhabricatorPolicyCapability::CAN_VIEW,
),
PonderModerateCapability::CAPABILITY => array(
'default' => PhabricatorPolicies::POLICY_ADMIN,
'template' => PonderQuestionPHIDType::TYPECONST,
'capability' => PhabricatorPolicyCapability::CAN_EDIT,
),
);
}
public function getApplicationSearchDocumentTypes() {
return array(
PonderQuestionPHIDType::TYPECONST,
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, May 13, 1:14 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
124333
Default Alt Text
PhabricatorPonderApplication.php (3 KB)

Event Timeline