Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2680453
D25674.1734542605.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
2 KB
Referenced Files
None
Subscribers
None
D25674.1734542605.diff
View Options
diff --git a/src/applications/dashboard/controller/panel/PhabricatorDashboardPanelListController.php b/src/applications/dashboard/controller/panel/PhabricatorDashboardPanelListController.php
--- a/src/applications/dashboard/controller/panel/PhabricatorDashboardPanelListController.php
+++ b/src/applications/dashboard/controller/panel/PhabricatorDashboardPanelListController.php
@@ -48,23 +48,4 @@
return $crumbs;
}
- protected function getNewUserBody() {
- $create_button = id(new PHUIButtonView())
- ->setTag('a')
- ->setText(pht('Create a Panel'))
- ->setHref('/dashboard/panel/edit/')
- ->setColor(PHUIButtonView::GREEN);
-
- $icon = $this->getApplication()->getIcon();
- $app_name = $this->getApplication()->getName();
- $view = id(new PHUIBigInfoView())
- ->setIcon($icon)
- ->setTitle(pht('Welcome to %s', $app_name))
- ->setDescription(
- pht('Build individual panels to display on your homepage dashboard.'))
- ->addAction($create_button);
-
- return $view;
- }
-
}
diff --git a/src/applications/dashboard/query/PhabricatorDashboardPanelSearchEngine.php b/src/applications/dashboard/query/PhabricatorDashboardPanelSearchEngine.php
--- a/src/applications/dashboard/query/PhabricatorDashboardPanelSearchEngine.php
+++ b/src/applications/dashboard/query/PhabricatorDashboardPanelSearchEngine.php
@@ -147,4 +147,22 @@
return $result;
}
+ protected function getNewUserBody() {
+ $create_button = id(new PHUIButtonView())
+ ->setTag('a')
+ ->setText(pht('Create a Panel'))
+ ->setHref('/dashboard/panel/edit/')
+ ->setColor(PHUIButtonView::GREEN);
+
+ $app_name = pht('Panels');
+ $view = id(new PHUIBigInfoView())
+ ->setIcon('fa-line-chart')
+ ->setTitle(pht('Welcome to %s', $app_name))
+ ->setDescription(
+ pht('Build individual panels to display on your homepage dashboard.'))
+ ->addAction($create_button);
+
+ return $view;
+ }
+
}
diff --git a/src/applications/search/engine/PhabricatorApplicationSearchEngine.php b/src/applications/search/engine/PhabricatorApplicationSearchEngine.php
--- a/src/applications/search/engine/PhabricatorApplicationSearchEngine.php
+++ b/src/applications/search/engine/PhabricatorApplicationSearchEngine.php
@@ -1454,6 +1454,12 @@
return $attachments;
}
+ /**
+ * Render a content body (if available) to onboard new users.
+ * This body is usually visible when you have no elements in a list,
+ * or when you force the rendering on a list with the `?nux=1` URL.
+ * @return wild|PhutilSafeHTML|null
+ */
final public function renderNewUserView() {
$body = $this->getNewUserBody();
@@ -1464,6 +1470,12 @@
return $body;
}
+ /**
+ * Get a content body to onboard new users.
+ * Traditionally this content is shown from an empty list, to explain
+ * what a certain entity does, and how to create a new one.
+ * @return wild|PhutilSafeHTML|null
+ */
protected function getNewUserHeader() {
return null;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Dec 18, 17:23 (1 h, 35 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1014899
Default Alt Text
D25674.1734542605.diff (2 KB)
Attached To
Mode
D25674: Panels list: fix missing welcome page
Attached
Detach File
Event Timeline
Log In to Comment