Differential D20006 Diff 47807 src/applications/settings/panel/PhabricatorDeveloperPreferencesSettingsPanel.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/settings/panel/PhabricatorDeveloperPreferencesSettingsPanel.php
| <?php | <?php | ||||
| final class PhabricatorDeveloperPreferencesSettingsPanel | final class PhabricatorDeveloperPreferencesSettingsPanel | ||||
| extends PhabricatorEditEngineSettingsPanel { | extends PhabricatorEditEngineSettingsPanel { | ||||
| const PANELKEY = 'developer'; | const PANELKEY = 'developer'; | ||||
| public function getPanelName() { | public function getPanelName() { | ||||
| return pht('Developer Settings'); | return pht('Developer Settings'); | ||||
| } | } | ||||
| public function getPanelMenuIcon() { | |||||
| return 'fa-magic'; | |||||
| } | |||||
| public function getPanelGroupKey() { | public function getPanelGroupKey() { | ||||
| return PhabricatorSettingsDeveloperPanelGroup::PANELGROUPKEY; | return PhabricatorSettingsDeveloperPanelGroup::PANELGROUPKEY; | ||||
| } | } | ||||
| public function isTemplatePanel() { | public function isTemplatePanel() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| } | } | ||||