Page MenuHomePhorge

PhabricatorPeopleManageProfilePanel.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

PhabricatorPeopleManageProfilePanel.php

<?php
final class PhabricatorPeopleManageProfilePanel
extends PhabricatorProfilePanel {
const PANELKEY = 'people.manage';
public function getPanelTypeName() {
return pht('Manage User');
}
private function getDefaultName() {
return pht('Manage');
}
public function canHidePanel(
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,
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Sun, May 4, 3:38 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
65663
Default Alt Text
PhabricatorPeopleManageProfilePanel.php (1 KB)

Event Timeline