Page MenuHomePhabricator

D9672.id23216.diff
No OneTemporary

D9672.id23216.diff

diff --git a/conf/default.conf.php b/conf/default.conf.php
--- a/conf/default.conf.php
+++ b/conf/default.conf.php
@@ -639,11 +639,6 @@
// Allowing non-members to interact with tasks over email.
'phabricator.allow-email-users' => false,
-// -- Welcome Screen -------------------------------------------------------- //
-
- // The custom HTML content for the Phabricator welcome screen.
- 'welcome.html' => null,
-
// -- Files ----------------------------------------------------------------- //
// Lists which uploaded file types may be viewed in the browser. If a file
diff --git a/src/applications/config/option/PhabricatorCoreConfigOptions.php b/src/applications/config/option/PhabricatorCoreConfigOptions.php
--- a/src/applications/config/option/PhabricatorCoreConfigOptions.php
+++ b/src/applications/config/option/PhabricatorCoreConfigOptions.php
@@ -167,10 +167,6 @@
->setLocked(true)
->setDescription(
pht('Customized settings for Phabricator applications.')),
- $this->newOption('welcome.html', 'string', null)
- ->setLocked(true)
- ->setDescription(
- pht('Custom HTML to show on the main Phabricator dashboard.')),
$this->newOption('phabricator.cache-namespace', 'string', null)
->setLocked(true)
->setDescription(pht('Cache namespace.')),
diff --git a/src/applications/home/controller/PhabricatorHomeMainController.php b/src/applications/home/controller/PhabricatorHomeMainController.php
--- a/src/applications/home/controller/PhabricatorHomeMainController.php
+++ b/src/applications/home/controller/PhabricatorHomeMainController.php
@@ -95,12 +95,6 @@
$commit_panel = null;
}
- if (PhabricatorEnv::getEnvConfig('welcome.html') !== null) {
- $welcome_panel = $this->buildWelcomePanel();
- } else {
- $welcome_panel = null;
- }
-
if ($has_differential) {
$revision_panel = $this->buildRevisionPanel();
} else {
@@ -108,7 +102,6 @@
}
return array(
- $welcome_panel,
$unbreak_panel,
$triage_panel,
$revision_panel,
@@ -252,16 +245,6 @@
return $panel;
}
- private function buildWelcomePanel() {
- $panel = new AphrontPanelView();
- $panel->appendChild(
- phutil_safe_html(
- PhabricatorEnv::getEnvConfig('welcome.html')));
- $panel->setNoBackground();
-
- return $panel;
- }
-
private function buildTasksPanel() {
$user = $this->getRequest()->getUser();
$user_phid = $user->getPHID();

File Metadata

Mime Type
text/plain
Expires
Oct 7 2025, 12:48 PM (14 w, 14 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8751365
Default Alt Text
D9672.id23216.diff (2 KB)

Event Timeline