Changeset View
Changeset View
Standalone View
Standalone View
src/applications/settings/panel/PhabricatorAccountSettingsPanel.php
| <?php | <?php | ||||
| final class PhabricatorAccountSettingsPanel | final class PhabricatorAccountSettingsPanel | ||||
| extends PhabricatorEditEngineSettingsPanel { | extends PhabricatorEditEngineSettingsPanel { | ||||
| const PANELKEY = 'account'; | const PANELKEY = 'account'; | ||||
| public function getPanelName() { | public function getPanelName() { | ||||
| return pht('Account'); | return pht('Account'); | ||||
| } | } | ||||
| public function getPanelGroup() { | public function getPanelGroupKey() { | ||||
| return pht('Account Information'); | return PhabricatorSettingsAccountPanelGroup::PANELGROUPKEY; | ||||
| } | } | ||||
| public function isEditableByAdministrators() { | public function isEditableByAdministrators() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| } | } | ||||