Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104562962
PhabricatorPasteApplication.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, Mar 10, 12:12
Size
2 KB
Mime Type
text/x-php
Expires
Wed, Mar 12, 12:12 (2 d)
Engine
blob
Format
Raw Data
Handle
24803294
Attached To
rPH Phabricator
PhabricatorPasteApplication.php
View Options
<?php
final
class
PhabricatorPasteApplication
extends
PhabricatorApplication
{
public
function
getName
()
{
return
pht
(
'Paste'
);
}
public
function
getBaseURI
()
{
return
'/paste/'
;
}
public
function
getFontIcon
()
{
return
'fa-paste'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
9C
\x
8E"
;
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_UTILITIES
;
}
public
function
getShortDescription
()
{
return
pht
(
'Share Text Snippets'
);
}
public
function
getRemarkupRules
()
{
return
array
(
new
PhabricatorPasteRemarkupRule
(),
);
}
public
function
getRoutes
()
{
return
array
(
'/P(?P<id>[1-9]
\d
*)(?:
\$
(?P<lines>
\d
+(?:-
\d
+)?))?'
=>
'PhabricatorPasteViewController'
,
'/paste/'
=>
array
(
'(query/(?P<queryKey>[^/]+)/)?'
=>
'PhabricatorPasteListController'
,
'create/'
=>
'PhabricatorPasteEditController'
,
$this
->
getEditRoutePattern
(
'edit/'
)
=>
'PhabricatorPasteEditController'
,
'raw/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorPasteRawController'
,
'comment/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorPasteCommentController'
,
),
);
}
public
function
supportsEmailIntegration
()
{
return
true
;
}
public
function
getAppEmailBlurb
()
{
return
pht
(
'Send email to these addresses to create pastes. %s'
,
phutil_tag
(
'a'
,
array
(
'href'
=>
$this
->
getInboundEmailSupportLink
(),
),
pht
(
'Learn More'
)));
}
protected
function
getCustomCapabilities
()
{
return
array
(
PasteDefaultViewCapability
::
CAPABILITY
=>
array
(
'caption'
=>
pht
(
'Default view policy for newly created pastes.'
),
'template'
=>
PhabricatorPastePastePHIDType
::
TYPECONST
,
'capability'
=>
PhabricatorPolicyCapability
::
CAN_VIEW
,
),
PasteDefaultEditCapability
::
CAPABILITY
=>
array
(
'caption'
=>
pht
(
'Default edit policy for newly created pastes.'
),
'template'
=>
PhabricatorPastePastePHIDType
::
TYPECONST
,
'capability'
=>
PhabricatorPolicyCapability
::
CAN_EDIT
,
),
);
}
public
function
getQuickCreateItems
(
PhabricatorUser
$viewer
)
{
$items
=
array
();
$item
=
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'Paste'
))
->
setIcon
(
'fa-clipboard'
)
->
setHref
(
$this
->
getBaseURI
().
'create/'
);
$items
[]
=
$item
;
return
$items
;
}
public
function
getMailCommandObjects
()
{
return
array
(
'paste'
=>
array
(
'name'
=>
pht
(
'Email Commands: Pastes'
),
'header'
=>
pht
(
'Interacting with Pastes'
),
'object'
=>
new
PhabricatorPaste
(),
'summary'
=>
pht
(
'This page documents the commands you can use to interact with '
.
'pastes.'
),
),
);
}
}
Event Timeline
Log In to Comment