mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
6270114767
Summary: - Removed trailing newlines. - Added newline at EOF. - Removed leading newlines. - Trimmed trailing whitespace. - Spelling fix. - Added newline at EOF Test Plan: N/A Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley CC: hach-que, chad, Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D8344
69 lines
1.7 KiB
PHP
69 lines
1.7 KiB
PHP
<?php
|
|
|
|
final class PhabricatorApplicationPhriction extends PhabricatorApplication {
|
|
|
|
public function getShortDescription() {
|
|
return pht('Wiki');
|
|
}
|
|
|
|
public function getBaseURI() {
|
|
return '/w/';
|
|
}
|
|
|
|
public function getIconName() {
|
|
return 'phriction';
|
|
}
|
|
|
|
public function getHelpURI() {
|
|
return PhabricatorEnv::getDoclink('article/Phriction_User_Guide.html');
|
|
}
|
|
|
|
public function getTitleGlyph() {
|
|
return "\xE2\x9A\xA1";
|
|
}
|
|
|
|
public function getRemarkupRules() {
|
|
return array(
|
|
new PhrictionRemarkupRule(),
|
|
);
|
|
}
|
|
|
|
public function getEventListeners() {
|
|
return array(
|
|
new PhrictionActionMenuEventListener(),
|
|
);
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
// Match "/w/" with slug "/".
|
|
'/w(?P<slug>/)' => 'PhrictionDocumentController',
|
|
// Match "/w/x/y/z/" with slug "x/y/z/".
|
|
'/w/(?P<slug>.+/)' => 'PhrictionDocumentController',
|
|
|
|
'/phriction/' => array(
|
|
'(?:query/(?P<queryKey>[^/]+)/)?' => 'PhrictionListController',
|
|
|
|
'history(?P<slug>/)' => 'PhrictionHistoryController',
|
|
'history/(?P<slug>.+/)' => 'PhrictionHistoryController',
|
|
|
|
'edit/(?:(?P<id>[1-9]\d*)/)?' => 'PhrictionEditController',
|
|
'delete/(?P<id>[1-9]\d*)/' => 'PhrictionDeleteController',
|
|
'new/' => 'PhrictionNewController',
|
|
'move/(?:(?P<id>[1-9]\d*)/)?' => 'PhrictionMoveController',
|
|
|
|
'preview/' => 'PhabricatorMarkupPreviewController',
|
|
'diff/(?P<id>[1-9]\d*)/' => 'PhrictionDiffController',
|
|
),
|
|
);
|
|
}
|
|
|
|
public function getApplicationGroup() {
|
|
return self::GROUP_COMMUNICATION;
|
|
}
|
|
|
|
public function getApplicationOrder() {
|
|
return 0.140;
|
|
}
|
|
|
|
}
|