Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91462311
PhabricatorMacroApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 11, 08:55
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Nov 13, 08:55 (2 d)
Engine
blob
Format
Raw Data
Handle
22266544
Attached To
rPH Phabricator
PhabricatorMacroApplication.php
View Options
<?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
getFontIcon
()
{
return
'fa-file-image-o'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
9A
\x
98"
;
}
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'
,
),
);
}
public
function
getRemarkupRules
()
{
return
array
(
new
PhabricatorIconRemarkupRule
(),
new
PhabricatorEmojiRemarkupRule
(),
);
}
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.'
),
),
);
}
}
Event Timeline
Log In to Comment