Changeset View
Changeset View
Standalone View
Standalone View
src/applications/settings/panel/PhabricatorDateTimeSettingsPanel.php
| <?php | <?php | ||||
| final class PhabricatorDateTimeSettingsPanel | final class PhabricatorDateTimeSettingsPanel | ||||
| extends PhabricatorEditEngineSettingsPanel { | extends PhabricatorEditEngineSettingsPanel { | ||||
| const PANELKEY = 'datetime'; | const PANELKEY = 'datetime'; | ||||
| public function getPanelName() { | public function getPanelName() { | ||||
| return pht('Date and Time'); | return pht('Date and Time'); | ||||
| } | } | ||||
| public function getPanelGroupKey() { | public function getPanelGroupKey() { | ||||
| return PhabricatorSettingsAccountPanelGroup::PANELGROUPKEY; | return PhabricatorSettingsAccountPanelGroup::PANELGROUPKEY; | ||||
| } | } | ||||
| public function isEditableByAdministrators() { | public function isManagementPanel() { | ||||
| return true; | |||||
| } | |||||
| public function isTemplatePanel() { | |||||
| return true; | return true; | ||||
| } | } | ||||
| } | } | ||||