Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92692245
PhabricatorApplicationPaste.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
Fri, Nov 22, 20:06
Size
941 B
Mime Type
text/x-php
Expires
Sun, Nov 24, 20:06 (2 d)
Engine
blob
Format
Raw Data
Handle
22487542
Attached To
rPH Phabricator
PhabricatorApplicationPaste.php
View Options
<?php
final
class
PhabricatorApplicationPaste
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/paste/'
;
}
public
function
getIconName
()
{
return
'paste'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
9C
\x
8E"
;
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_UTILITIES
;
}
public
function
getQuickCreateURI
()
{
return
$this
->
getBaseURI
().
'create/'
;
}
public
function
getRemarkupRules
()
{
return
array
(
new
PhabricatorPasteRemarkupRule
(),
);
}
public
function
getRoutes
()
{
return
array
(
'/P(?P<id>[1-9]
\d
*)'
=>
'PhabricatorPasteViewController'
,
'/paste/'
=>
array
(
'(query/(?P<queryKey>[^/]+)/)?'
=>
'PhabricatorPasteListController'
,
'create/'
=>
'PhabricatorPasteEditController'
,
'edit/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorPasteEditController'
,
),
);
}
}
Event Timeline
Log In to Comment