Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F18943905
D9672.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D9672.diff
View Options
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
Details
Attached
Mime Type
text/plain
Expires
Nov 12 2025, 2:58 PM (8 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8751365
Default Alt Text
D9672.diff (2 KB)
Attached To
Mode
D9672: Remove `welcome.html` config option
Attached
Detach File
Event Timeline
Log In to Comment