Changeset View
Changeset View
Standalone View
Standalone View
src/applications/settings/panel/PhabricatorActivitySettingsPanel.php
| <?php | <?php | ||||
| final class PhabricatorActivitySettingsPanel extends PhabricatorSettingsPanel { | final class PhabricatorActivitySettingsPanel extends PhabricatorSettingsPanel { | ||||
| public function getPanelKey() { | public function getPanelKey() { | ||||
| return 'activity'; | return 'activity'; | ||||
| } | } | ||||
| public function getPanelName() { | public function getPanelName() { | ||||
| return pht('Activity Logs'); | return pht('Activity Logs'); | ||||
| } | } | ||||
| public function getPanelMenuIcon() { | |||||
| return 'fa-list'; | |||||
| } | |||||
| public function getPanelGroupKey() { | public function getPanelGroupKey() { | ||||
| return PhabricatorSettingsLogsPanelGroup::PANELGROUPKEY; | return PhabricatorSettingsLogsPanelGroup::PANELGROUPKEY; | ||||
| } | } | ||||
| public function processRequest(AphrontRequest $request) { | public function processRequest(AphrontRequest $request) { | ||||
| $viewer = $request->getUser(); | $viewer = $request->getUser(); | ||||
| $user = $this->getUser(); | $user = $this->getUser(); | ||||
| Show All 26 Lines | |||||