Differential D20006 Diff 47807 src/applications/settings/panel/PhabricatorEmailAddressesSettingsPanel.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/settings/panel/PhabricatorEmailAddressesSettingsPanel.php
| <?php | <?php | ||||
| final class PhabricatorEmailAddressesSettingsPanel | final class PhabricatorEmailAddressesSettingsPanel | ||||
| extends PhabricatorSettingsPanel { | extends PhabricatorSettingsPanel { | ||||
| public function getPanelKey() { | public function getPanelKey() { | ||||
| return 'email'; | return 'email'; | ||||
| } | } | ||||
| public function getPanelName() { | public function getPanelName() { | ||||
| return pht('Email Addresses'); | return pht('Email Addresses'); | ||||
| } | } | ||||
| public function getPanelMenuIcon() { | |||||
| return 'fa-at'; | |||||
| } | |||||
| public function getPanelGroupKey() { | public function getPanelGroupKey() { | ||||
| return PhabricatorSettingsEmailPanelGroup::PANELGROUPKEY; | return PhabricatorSettingsEmailPanelGroup::PANELGROUPKEY; | ||||
| } | } | ||||
| public function isEditableByAdministrators() { | public function isEditableByAdministrators() { | ||||
| if ($this->getUser()->getIsMailingList()) { | if ($this->getUser()->getIsMailingList()) { | ||||
| return true; | return true; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 390 Lines • Show Last 20 Lines | |||||