Differential D20006 Diff 47807 src/applications/settings/panel/PhabricatorExternalAccountsSettingsPanel.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/settings/panel/PhabricatorExternalAccountsSettingsPanel.php
| <?php | <?php | ||||
| final class PhabricatorExternalAccountsSettingsPanel | final class PhabricatorExternalAccountsSettingsPanel | ||||
| extends PhabricatorSettingsPanel { | extends PhabricatorSettingsPanel { | ||||
| public function getPanelKey() { | public function getPanelKey() { | ||||
| return 'external'; | return 'external'; | ||||
| } | } | ||||
| public function getPanelName() { | public function getPanelName() { | ||||
| return pht('External Accounts'); | return pht('External Accounts'); | ||||
| } | } | ||||
| public function getPanelMenuIcon() { | |||||
| return 'fa-users'; | |||||
| } | |||||
| public function getPanelGroupKey() { | public function getPanelGroupKey() { | ||||
| return PhabricatorSettingsAuthenticationPanelGroup::PANELGROUPKEY; | return PhabricatorSettingsAuthenticationPanelGroup::PANELGROUPKEY; | ||||
| } | } | ||||
| public function processRequest(AphrontRequest $request) { | public function processRequest(AphrontRequest $request) { | ||||
| $viewer = $request->getUser(); | $viewer = $request->getUser(); | ||||
| $providers = PhabricatorAuthProvider::getAllProviders(); | $providers = PhabricatorAuthProvider::getAllProviders(); | ||||
| ▲ Show 20 Lines • Show All 116 Lines • Show Last 20 Lines | |||||