Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92763199
PhabricatorProjectWikiProfilePanel.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
Sat, Nov 23, 12:46
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Nov 25, 12:46 (2 d)
Engine
blob
Format
Raw Data
Handle
22507283
Attached To
rPH Phabricator
PhabricatorProjectWikiProfilePanel.php
View Options
<?php
final
class
PhabricatorProjectWikiProfileMenuItem
extends
PhabricatorProfileMenuItem
{
const
MENUITEMKEY
=
'project.wiki'
;
const
MENUITEM_WIKI
=
'project.wiki'
;
public
function
getMenuItemTypeName
()
{
return
pht
(
'Project Wiki'
);
}
private
function
getDefaultName
()
{
return
pht
(
'Wiki'
);
}
public
function
canMakeDefault
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
true
;
}
public
function
getDisplayName
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
$name
=
$config
->
getMenuItemProperty
(
'name'
);
if
(
strlen
(
$name
))
{
return
$name
;
}
return
$this
->
getDefaultName
();
}
public
function
buildEditEngineFields
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
return
array
(
id
(
new
PhabricatorTextEditField
())
->
setKey
(
'name'
)
->
setLabel
(
pht
(
'Name'
))
->
setPlaceholder
(
$this
->
getDefaultName
())
->
setValue
(
$config
->
getMenuItemProperty
(
'name'
)),
);
}
protected
function
newNavigationMenuItems
(
PhabricatorProfileMenuItemConfiguration
$config
)
{
$project
=
$config
->
getProfileObject
();
$id
=
$project
->
getID
();
$name
=
$this
->
getDisplayName
(
$config
);
$icon
=
'fa-book'
;
$href
=
"/project/wiki/view/{$id}/"
;
$item
=
$this
->
newItem
()
->
setHref
(
$href
)
->
setName
(
$name
)
->
setIcon
(
$icon
);
return
array
(
$item
,
);
}
}
Event Timeline
Log In to Comment