Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F452560
PhabricatorDashboardPortalProfileMenuEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorDashboardPortalProfileMenuEngine.php
View Options
<?php
final
class
PhabricatorDashboardPortalProfileMenuEngine
extends
PhabricatorProfileMenuEngine
{
protected
function
isMenuEngineConfigurable
()
{
return
true
;
}
protected
function
isMenuEnginePersonalizable
()
{
return
false
;
}
public
function
getItemURI
(
$path
)
{
$portal
=
$this
->
getProfileObject
();
return
$portal
->
getURI
().
$path
;
}
protected
function
getBuiltinProfileItems
(
$object
)
{
$items
=
array
();
$items
[]
=
$this
->
newDividerItem
(
'tail'
);
$items
[]
=
$this
->
newManageItem
();
$items
[]
=
$this
->
newItem
()
->
setMenuItemKey
(
PhabricatorDashboardPortalMenuItem
::
MENUITEMKEY
)
->
setBuiltinKey
(
'manage'
)
->
setIsTailItem
(
true
);
return
$items
;
}
protected
function
newNoContentView
(
array
$items
)
{
$object
=
$this
->
getProfileObject
();
$builtins
=
$this
->
getBuiltinProfileItems
(
$object
);
if
(
count
(
$items
)
<=
count
(
$builtins
))
{
return
$this
->
newEmptyView
(
pht
(
'New Portal'
),
pht
(
'Use "Edit Menu" to add menu items to this portal.'
));
}
else
{
return
$this
->
newEmptyView
(
pht
(
'No Portal Content'
),
pht
(
'None of the visible menu items in this portal can render any '
.
'content.'
));
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 12:45 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
58231
Default Alt Text
PhabricatorDashboardPortalProfileMenuEngine.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment