Skip to content
Snippets Groups Projects
Verified Commit a84aa74c authored by Christian Wach's avatar Christian Wach :soccer: Committed by Kevin Cristiano
Browse files

Pass contact ID as param to executeQuery()

parent 133fde9e
No related branches found
No related tags found
No related merge requests found
...@@ -373,15 +373,23 @@ class CRM_Core_BAO_Dashboard extends CRM_Core_DAO_Dashboard { ...@@ -373,15 +373,23 @@ class CRM_Core_BAO_Dashboard extends CRM_Core_DAO_Dashboard {
// Restrict query to Dashlets in this domain. // Restrict query to Dashlets in this domain.
$domainDashletClause = !empty($domainDashletIDs) ? "dashboard_id IN (" . implode(',', $domainDashletIDs) . ")" : '(1)'; $domainDashletClause = !empty($domainDashletIDs) ? "dashboard_id IN (" . implode(',', $domainDashletIDs) . ")" : '(1)';
// Disable inactive widgets. // Target only those Dashlets which are inactive.
$dashletClause = $dashletIDs ? "dashboard_id NOT IN (" . implode(',', $dashletIDs) . ")" : '(1)'; $dashletClause = $dashletIDs ? "dashboard_id NOT IN (" . implode(',', $dashletIDs) . ")" : '(1)';
// Build params.
$params = [
1 => [$contactID, 'Integer'],
];
// Build query.
$updateQuery = "UPDATE civicrm_dashboard_contact $updateQuery = "UPDATE civicrm_dashboard_contact
SET is_active = 0 SET is_active = 0
WHERE $domainDashletClause WHERE $domainDashletClause
AND $dashletClause AND $dashletClause
AND contact_id = {$contactID}"; AND contact_id = %1";
CRM_Core_DAO::executeQuery($updateQuery); // Disable inactive widgets.
CRM_Core_DAO::executeQuery($updateQuery, $params);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment