Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15465879
D11750.id28326.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D11750.id28326.diff
View Options
diff --git a/src/applications/dashboard/customfield/PhabricatorDashboardPanelSearchQueryCustomField.php b/src/applications/dashboard/customfield/PhabricatorDashboardPanelSearchQueryCustomField.php
--- a/src/applications/dashboard/customfield/PhabricatorDashboardPanelSearchQueryCustomField.php
+++ b/src/applications/dashboard/customfield/PhabricatorDashboardPanelSearchQueryCustomField.php
@@ -16,6 +16,7 @@
$engines = id(new PhutilSymbolLoader())
->setAncestorClass('PhabricatorApplicationSearchEngine')
->loadObjects();
+ $engines = mfilter($engines, 'canUseInPanelContext');
$value = $this->getFieldValue();
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
@@ -46,6 +46,10 @@
return ($this->context == self::CONTEXT_PANEL);
}
+ public function canUseInPanelContext() {
+ return true;
+ }
+
public function saveQuery(PhabricatorSavedQuery $query) {
$query->setEngineClassName(get_class($this));
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Apr 4, 12:02 AM (2 d, 23 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7714659
Default Alt Text
D11750.id28326.diff (1 KB)
Attached To
Mode
D11750: Dashboards - introduce ability to optionally allow SearchEngines to be used as dashboard panels
Attached
Detach File
Event Timeline
Log In to Comment