mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 20:22:46 +01:00
50f910ce67
Summary: Ref T10394. Currently, these rules are only active if the Macro application is installed. Instead, install them unconditionally. Test Plan: - Used `{icon camera}` with Macro installed and uninstalled. Reviewers: chad Reviewed By: chad Maniphest Tasks: T10394 Differential Revision: https://secure.phabricator.com/D15311
66 lines
1.8 KiB
PHP
66 lines
1.8 KiB
PHP
<?php
|
|
|
|
final class PhabricatorMacroApplication extends PhabricatorApplication {
|
|
|
|
public function getBaseURI() {
|
|
return '/macro/';
|
|
}
|
|
|
|
public function getName() {
|
|
return pht('Macro');
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return pht('Image Macros and Memes');
|
|
}
|
|
|
|
public function getIcon() {
|
|
return 'fa-file-image-o';
|
|
}
|
|
|
|
public function getTitleGlyph() {
|
|
return "\xE2\x9A\x98";
|
|
}
|
|
|
|
public function getApplicationGroup() {
|
|
return self::GROUP_UTILITIES;
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/macro/' => array(
|
|
'(query/(?P<key>[^/]+)/)?' => 'PhabricatorMacroListController',
|
|
'create/' => 'PhabricatorMacroEditController',
|
|
'view/(?P<id>[1-9]\d*)/' => 'PhabricatorMacroViewController',
|
|
'comment/(?P<id>[1-9]\d*)/' => 'PhabricatorMacroCommentController',
|
|
'edit/(?P<id>[1-9]\d*)/' => 'PhabricatorMacroEditController',
|
|
'audio/(?P<id>[1-9]\d*)/' => 'PhabricatorMacroAudioController',
|
|
'disable/(?P<id>[1-9]\d*)/' => 'PhabricatorMacroDisableController',
|
|
'meme/' => 'PhabricatorMacroMemeController',
|
|
'meme/create/' => 'PhabricatorMacroMemeDialogController',
|
|
),
|
|
);
|
|
}
|
|
|
|
protected function getCustomCapabilities() {
|
|
return array(
|
|
PhabricatorMacroManageCapability::CAPABILITY => array(
|
|
'caption' => pht('Allows creating and editing macros.'),
|
|
),
|
|
);
|
|
}
|
|
|
|
public function getMailCommandObjects() {
|
|
return array(
|
|
'macro' => array(
|
|
'name' => pht('Email Commands: Macros'),
|
|
'header' => pht('Interacting with Macros'),
|
|
'object' => new PhabricatorFileImageMacro(),
|
|
'summary' => pht(
|
|
'This page documents the commands you can use to interact with '.
|
|
'image macros.'),
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|