Page MenuHomec4science

PhabricatorPeopleManageProfileMenuItem.php
No OneTemporary

File Metadata

Created
Sat, Aug 31, 07:31

PhabricatorPeopleManageProfileMenuItem.php

<?php
final class PhabricatorPeopleManageProfileMenuItem
extends PhabricatorProfileMenuItem {
const MENUITEMKEY = 'people.manage';
public function getMenuItemTypeName() {
return pht('Manage User');
}
private function getDefaultName() {
return pht('Manage');
}
public function canHideMenuItem(
PhabricatorProfileMenuItemConfiguration $config) {
return false;
}
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) {
$user = $config->getProfileObject();
$id = $user->getID();
$item = $this->newItem()
->setHref("/people/manage/{$id}/")
->setName($this->getDisplayName($config))
->setIcon('fa-gears');
return array(
$item,
);
}
}

Event Timeline