Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295282
PhabricatorHelpApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorHelpApplication.php
View Options
<?php
final
class
PhabricatorHelpApplication
extends
PhabricatorApplication
{
public
function
getName
(
)
{
return
pht
(
'Help'
)
;
}
public
function
canUninstall
(
)
{
return
false
;
}
public
function
isUnlisted
(
)
{
return
true
;
}
public
function
getRoutes
(
)
{
return
array
(
'/help/'
=>
array
(
'keyboardshortcut/'
=>
'PhabricatorHelpKeyboardShortcutController'
,
'editorprotocol/'
=>
'PhabricatorHelpEditorProtocolController'
,
'documentation/(?P<application>\w+)/'
=>
'PhabricatorHelpDocumentationController'
,
)
,
)
;
}
public
function
buildMainMenuItems
(
PhabricatorUser
$user
,
PhabricatorController
$controller
=
null
)
{
$application
=
null
;
if
(
$controller
)
{
$application
=
$controller
->
getCurrentApplication
(
)
;
}
$items
=
array
(
)
;
$help_id
=
celerity_generate_unique_node_id
(
)
;
Javelin
::
initBehavior
(
'aphlict-dropdown'
,
array
(
'bubbleID'
=>
$help_id
,
'dropdownID'
=>
'phabricator-help-menu'
,
'applicationClass'
=>
__CLASS__
,
'local'
=>
true
,
'desktop'
=>
true
,
'right'
=>
true
,
)
)
;
$item
=
id
(
new
PHUIListItemView
(
)
)
->
setIcon
(
'fa-life-ring'
)
->
addClass
(
'core-menu-item'
)
->
setID
(
$help_id
)
->
setOrder
(
200
)
;
$hide
=
true
;
if
(
$application
)
{
$help_name
=
pht
(
'%s Help'
,
$application
->
getName
(
)
)
;
$item
->
setName
(
$help_name
)
->
setHref
(
'/help/documentation/'
.
get_class
(
$application
)
.
'/'
)
->
setAural
(
$help_name
)
;
$help_items
=
$application
->
getHelpMenuItems
(
$user
)
;
if
(
$help_items
)
{
$hide
=
false
;
}
}
if
(
$hide
)
{
$item
->
setStyle
(
'display: none'
)
;
}
$items
[
]
=
$item
;
return
$items
;
}
public
function
buildMainMenuExtraNodes
(
PhabricatorUser
$viewer
,
PhabricatorController
$controller
=
null
)
{
$application
=
null
;
if
(
$controller
)
{
$application
=
$controller
->
getCurrentApplication
(
)
;
}
$view
=
null
;
if
(
$application
)
{
$help_items
=
$application
->
getHelpMenuItems
(
$viewer
)
;
if
(
$help_items
)
{
$view
=
new
PHUIListView
(
)
;
foreach
(
$help_items
as
$item
)
{
$view
->
addMenuItem
(
$item
)
;
}
}
}
return
phutil_tag
(
'div'
,
array
(
'id'
=>
'phabricator-help-menu'
,
'class'
=>
'phabricator-main-menu-dropdown phui-list-sidenav'
,
'style'
=>
'display: none'
,
)
,
$view
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:40 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1142894
Default Alt Text
PhabricatorHelpApplication.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment