Differential D20006 Diff 47807 src/applications/settings/panel/PhabricatorDiffPreferencesSettingsPanel.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/settings/panel/PhabricatorDiffPreferencesSettingsPanel.php
| <?php | <?php | ||||
| final class PhabricatorDiffPreferencesSettingsPanel | final class PhabricatorDiffPreferencesSettingsPanel | ||||
| extends PhabricatorEditEngineSettingsPanel { | extends PhabricatorEditEngineSettingsPanel { | ||||
| const PANELKEY = 'diff'; | const PANELKEY = 'diff'; | ||||
| public function getPanelName() { | public function getPanelName() { | ||||
| return pht('Diff Preferences'); | return pht('Diff Preferences'); | ||||
| } | } | ||||
| public function getPanelMenuIcon() { | |||||
| return 'fa-cog'; | |||||
| } | |||||
| public function getPanelGroupKey() { | public function getPanelGroupKey() { | ||||
| return PhabricatorSettingsApplicationsPanelGroup::PANELGROUPKEY; | return PhabricatorSettingsApplicationsPanelGroup::PANELGROUPKEY; | ||||
| } | } | ||||
| public function isTemplatePanel() { | public function isTemplatePanel() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| } | } | ||||