From bdf9ae5ad2592df0e9d94cceab94186fd5460ce6 Mon Sep 17 00:00:00 2001 From: Christian Wach <needle@haystack.co.uk> Date: Thu, 22 Aug 2019 13:08:19 +0100 Subject: [PATCH] Ensure Dashboard respects multiple Domains --- civicrm/CRM/Core/BAO/Dashboard.php | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/civicrm/CRM/Core/BAO/Dashboard.php b/civicrm/CRM/Core/BAO/Dashboard.php index 8b61cf0c0d..8eef143232 100644 --- a/civicrm/CRM/Core/BAO/Dashboard.php +++ b/civicrm/CRM/Core/BAO/Dashboard.php @@ -109,6 +109,7 @@ class CRM_Core_BAO_Dashboard extends CRM_Core_DAO_Dashboard { 'contact_id' => $contactID, 'is_active' => 1, 'dashboard_id.is_active' => 1, + 'dashboard_id.domain_id' => CRM_Core_Config::domainID(), 'options' => ['sort' => 'weight', 'limit' => 0], 'return' => [ 'id', @@ -143,7 +144,7 @@ class CRM_Core_BAO_Dashboard extends CRM_Core_DAO_Dashboard { // If empty, then initialize default dashlets for this user. if (!$results['count']) { // They may just have disabled all their dashlets. Check if any records exist for this contact. - if (!civicrm_api3('DashboardContact', 'getcount', ['contact_id' => $contactID])) { + if (!civicrm_api3('DashboardContact', 'getcount', ['contact_id' => $contactID, 'dashboard_id.domain_id' => CRM_Core_Config::domainID()])) { $dashlets = self::initializeDashlets(); } } @@ -388,7 +389,13 @@ class CRM_Core_BAO_Dashboard extends CRM_Core_DAO_Dashboard { $dashlet = new CRM_Core_DAO_Dashboard(); if (!$dashboardID) { - // check url is same as exiting entries, if yes just update existing + + // Assign domain before search to allow identical dashlets in different domains. + if (empty($params['domain_id'])) { + $dashlet->domain_id = CRM_Core_Config::domainID(); + } + + // Try and find an existing dashlet - it will be updated if found. if (!empty($params['name'])) { $dashlet->name = CRM_Utils_Array::value('name', $params); $dashlet->find(TRUE); @@ -397,9 +404,7 @@ class CRM_Core_BAO_Dashboard extends CRM_Core_DAO_Dashboard { $dashlet->url = CRM_Utils_Array::value('url', $params); $dashlet->find(TRUE); } - if (empty($params['domain_id'])) { - $dashlet->domain_id = CRM_Core_Config::domainID(); - } + } else { $dashlet->id = $dashboardID; -- GitLab