getLoggedInContactID() is a static function
authorPradeep Nayak <pradpnayak@gmail.com>
Thu, 9 Jul 2020 21:25:35 +0000 (22:25 +0100)
committerPradeep Nayak <pradpnayak@gmail.com>
Thu, 9 Jul 2020 21:25:35 +0000 (22:25 +0100)
CRM/ACL/API.php
CRM/Contact/Form/Merge.php
CRM/Contact/Form/Task/PDFLetterCommon.php
CRM/Contact/Page/View/UserDashBoard.php
CRM/Contribute/Form/ContributionBase.php
CRM/Core/BAO/Domain.php
CRM/Core/BAO/Email.php
CRM/Core/BAO/Note.php
CRM/Event/BAO/Participant.php
CRM/Profile/Selector/Listings.php

index ba4991dc2de8d29fb8452427f29347a00458c064..17982fb7baa92c3cc9ded987094c8b501dc071e1 100644 (file)
@@ -189,7 +189,7 @@ class CRM_ACL_API {
     }
 
     if (!$contactID) {
-      $contactID = CRM_Core_Session::singleton()->getLoggedInContactID();
+      $contactID = CRM_Core_Session::getLoggedInContactID();
     }
 
     $key = "{$tableName}_{$type}_{$contactID}";
index ddea89ac896a2477f668634d4084e8af09cb7e92..0f68d5a057c24f8f5fc97f1ca5a84558509596ef 100644 (file)
@@ -376,7 +376,7 @@ class CRM_Contact_Form_Merge extends CRM_Core_Form {
       CRM_Utils_System::permissionDenied();
     }
     // ensure that oid is not the current user, if so refuse to do the merge
-    if (CRM_Core_Session::singleton()->getLoggedInContactID() == $oid) {
+    if (CRM_Core_Session::getLoggedInContactID() == $oid) {
       $message = ts('The contact record which is linked to the currently logged in user account - \'%1\' - cannot be deleted.',
         [1 => CRM_Core_Session::singleton()->getLoggedInContactDisplayName()]
       );
index fddf30a8f99d4630519f34169cc7883fdca879dc..51ac8c9ad680d259035a9096f1ccbd13b7588dc0 100644 (file)
@@ -235,7 +235,7 @@ class CRM_Contact_Form_Task_PDFLetterCommon extends CRM_Core_Form_Task_PDFLetter
     $activityParams = [
       'subject' => $subject,
       'campaign_id' => $campaign_id,
-      'source_contact_id' => CRM_Core_Session::singleton()->getLoggedInContactID(),
+      'source_contact_id' => CRM_Core_Session::getLoggedInContactID(),
       'activity_type_id' => CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Print PDF Letter'),
       'activity_date_time' => date('YmdHis'),
       'details' => $html_message,
index 347824ccebb7930e32523c1b4f580ed2a75765ba..8cba50bcb095c15408cac5350633b22040bbc67f 100644 (file)
@@ -47,7 +47,7 @@ class CRM_Contact_Page_View_UserDashBoard extends CRM_Core_Page {
     }
 
     $this->_contactId = CRM_Utils_Request::retrieve('id', 'Positive', $this);
-    $userID = CRM_Core_Session::singleton()->getLoggedInContactID();
+    $userID = CRM_Core_Session::getLoggedInContactID();
 
     $userChecksum = $this->getUserChecksum();
     $validUser = FALSE;
index ca2805d551eb1e0849df356b4d6be2f3501cc2a3..6822a355f6f560c8009ab857d72a366839da5c50 100644 (file)
@@ -222,7 +222,7 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form {
     $this->_emailExists = $this->get('emailExists');
 
     // this was used prior to the cleverer this_>getContactID - unsure now
-    $this->_userID = CRM_Core_Session::singleton()->getLoggedInContactID();
+    $this->_userID = CRM_Core_Session::getLoggedInContactID();
 
     $this->_contactID = $this->_membershipContactID = $this->getContactID();
     $this->_mid = NULL;
index 14e885a6e2eaa2da6d62d9e566182998b764bd7c..264e3ad4afbf724f112d942c9a217d831d24aaa9 100644 (file)
@@ -328,7 +328,7 @@ class CRM_Core_BAO_Domain extends CRM_Core_DAO_Domain {
       return [$userName, $userEmail];
     }
 
-    $userID = CRM_Core_Session::singleton()->getLoggedInContactID();
+    $userID = CRM_Core_Session::getLoggedInContactID();
     if (!empty($userID)) {
       list($userName, $userEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($userID);
     }
index 3ec6dea97f3ba6d973929f168d2f755878a9f774..0dd1bca05a49d314cd910b8415f2e82aa4cba4ba 100644 (file)
@@ -305,7 +305,7 @@ AND    reset_date IS NULL
 
     $contactFromEmails = [];
     // add logged in user's active email ids
-    $contactID = CRM_Core_Session::singleton()->getLoggedInContactID();
+    $contactID = CRM_Core_Session::getLoggedInContactID();
     if ($contactID) {
       $contactEmails = self::allEmails($contactID);
       $fromDisplayName  = CRM_Core_Session::singleton()->getLoggedInContactDisplayName();
index e2ed3102e73b56e008715d5bf06de174bb41298d..c93215d235208acfa61f42e703e0ee12e06541f1 100644 (file)
@@ -169,7 +169,7 @@ class CRM_Core_BAO_Note extends CRM_Core_DAO_Note {
 
       $noteActions = FALSE;
 
-      $loggedInContactID = CRM_Core_Session::singleton()->getLoggedInContactID();
+      $loggedInContactID = CRM_Core_Session::getLoggedInContactID();
       if ($loggedInContactID) {
         if ($loggedInContactID == $note->entity_id) {
           $noteActions = TRUE;
index d05b01176df3a5708800f61ecae73c57e1d70969..1a3e59a0bedb751063a2a4b1b7da5859c195ee60 100644 (file)
@@ -1810,7 +1810,7 @@ WHERE    civicrm_participant.contact_id = {$contactID} AND
     ];
 
     // create activity with target contacts
-    $id = CRM_Core_Session::singleton()->getLoggedInContactID();
+    $id = CRM_Core_Session::getLoggedInContactID();
     if ($id) {
       $activityParams['source_contact_id'] = $id;
       $activityParams['target_contact_id'][] = $contactId;
index 8c7cd19959919d42d88b95d54a06faa15e066570..b53a723b4fef86a302b06d233b328d5041a23533 100644 (file)
@@ -491,7 +491,7 @@ class CRM_Profile_Selector_Listings extends CRM_Core_Selector_Base implements CR
     if ($editLink && ($mask & CRM_Core_Permission::EDIT)) {
       // do not allow edit for anon users in joomla frontend, CRM-4668
       $config = CRM_Core_Config::singleton();
-      if (!$config->userFrameworkFrontend || CRM_Core_Session::singleton()->getLoggedInContactID()) {
+      if (!$config->userFrameworkFrontend || CRM_Core_Session::getLoggedInContactID()) {
         $this->_editLink = TRUE;
       }
     }