Changeset View
Changeset View
Standalone View
Standalone View
src/applications/settings/panel/PhabricatorSettingsPanel.php
| Show First 20 Lines • Show All 126 Lines • ▼ Show 20 Lines | /* -( Panel Configuration )------------------------------------------------ */ | ||||
| * | * | ||||
| * @return string Human-readable panel name. | * @return string Human-readable panel name. | ||||
| * @task config | * @task config | ||||
| */ | */ | ||||
| abstract public function getPanelName(); | abstract public function getPanelName(); | ||||
| /** | /** | ||||
| * Return an icon for the panel in the menu. | |||||
| * | |||||
| * @return string Icon identifier. | |||||
| * @task config | |||||
| */ | |||||
| public function getPanelMenuIcon() { | |||||
| return 'fa-wrench'; | |||||
| } | |||||
| /** | |||||
| * Return a panel group key constant for this panel. | * Return a panel group key constant for this panel. | ||||
| * | * | ||||
| * @return const Panel group key. | * @return const Panel group key. | ||||
| * @task config | * @task config | ||||
| */ | */ | ||||
| abstract public function getPanelGroupKey(); | abstract public function getPanelGroupKey(); | ||||
| ▲ Show 20 Lines • Show All 159 Lines • Show Last 20 Lines | |||||