Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101307507
PhabricatorPhrictionApplication.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, Feb 7, 15:49
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Feb 9, 15:49 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
24132022
Attached To
rPH Phabricator
PhabricatorPhrictionApplication.php
View Options
<?php
final
class
PhabricatorPhrictionApplication
extends
PhabricatorApplication
{
public
function
getName
()
{
return
pht
(
'Phriction'
);
}
public
function
getShortDescription
()
{
return
pht
(
'Wiki'
);
}
public
function
getBaseURI
()
{
return
'/w/'
;
}
public
function
getFontIcon
()
{
return
'fa-book'
;
}
public
function
isPinnedByDefault
(
PhabricatorUser
$viewer
)
{
return
true
;
}
public
function
getHelpURI
()
{
return
PhabricatorEnv
::
getDoclink
(
'Phriction User Guide'
);
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
9A
\x
A1"
;
}
public
function
getRemarkupRules
()
{
return
array
(
new
PhrictionRemarkupRule
(),
);
}
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
getApplicationOrder
()
{
return
0.140
;
}
}
Event Timeline
Log In to Comment