@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Hide Audit information on Home when the application is uninstalled

Test Plan: Looked at Home with Audit installed and uninstalled.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley

CC: Korvin, epriestley, aran

Differential Revision: https://secure.phabricator.com/D7277

authored by

Asher Baker and committed by
epriestley
e3005fad f4582dc4

+10 -2
+10 -2
src/applications/directory/controller/PhabricatorDirectoryMainController.php
··· 41 41 $tasks_panel = null; 42 42 } 43 43 44 + $audit = 'PhabricatorApplicationAudit'; 45 + if (PhabricatorApplication::isClassInstalled($audit)) { 46 + $audit_panel = $this->buildAuditPanel(); 47 + $commit_panel = $this->buildCommitPanel(); 48 + } else { 49 + $audit_panel = null; 50 + $commit_panel = null; 51 + } 52 + 44 53 if (PhabricatorEnv::getEnvConfig('welcome.html') !== null) { 45 54 $welcome_panel = $this->buildWelcomePanel(); 46 55 } else { 47 56 $welcome_panel = null; 48 57 } 58 + 49 59 $jump_panel = $this->buildJumpPanel(); 50 60 $revision_panel = $this->buildRevisionPanel(); 51 - $audit_panel = $this->buildAuditPanel(); 52 - $commit_panel = $this->buildCommitPanel(); 53 61 54 62 $content = array( 55 63 $jump_panel,