CRM-19028 - Change get(userID) to getLoggedInContactID()
authorColeman Watts <coleman@civicrm.org>
Wed, 12 Oct 2016 18:23:23 +0000 (14:23 -0400)
committerColeman Watts <coleman@civicrm.org>
Wed, 12 Oct 2016 18:23:23 +0000 (14:23 -0400)
13 files changed:
CRM/ACL/API.php
CRM/ACL/BAO/ACL.php
CRM/Activity/BAO/Activity.php
CRM/Activity/BAO/ICalendar.php
CRM/Activity/Form/Activity.php
CRM/Activity/Form/ActivityFilter.php
CRM/Contact/Page/DashBoard.php
CRM/Core/BAO/Dashboard.php
CRM/Core/Session.php
CRM/Dedupe/Finder.php
CRM/Event/BAO/Event.php
CRM/Mailing/Page/View.php
CRM/Report/Form/Instance.php

index 3d0c090dc9ddc39df4e258e48bafe1e98457bc32..113bcce0e9250eb7871bc196f68d6b9756eb3953 100644 (file)
@@ -57,8 +57,7 @@ class CRM_ACL_API {
    */
   public static function check($str, $contactID = NULL) {
     if ($contactID == NULL) {
-      $session = CRM_Core_Session::singleton();
-      $contactID = $session->get('userID');
+      $contactID = CRM_Core_Session::getLoggedInContactID();
     }
 
     if (!$contactID) {
@@ -164,8 +163,7 @@ class CRM_ACL_API {
     $includedGroups = NULL
   ) {
     if ($contactID == NULL) {
-      $session = CRM_Core_Session::singleton();
-      $contactID = $session->get('userID');
+      $contactID = CRM_Core_Session::getLoggedInContactID();
     }
 
     if (!$contactID) {
index 54962f9cfa3101699c2e9501177552a7063afadb..e3002f65f59d90441f78c38b0ecace4db262b335 100644 (file)
@@ -126,8 +126,7 @@ class CRM_ACL_BAO_ACL extends CRM_ACL_DAO_ACL {
       'GroupContact' => CRM_Contact_DAO_GroupContact::getTableName(),
     );
 
-    $session = CRM_Core_Session::singleton();
-    $contact_id = $session->get('userID');
+    $contact_id = CRM_Core_Session::getLoggedInContactID();
 
     $where = " {$t['ACL']}.operation = '" . CRM_Utils_Type::escape($operation, 'String') . "'";
 
index 35cd6d52dbc841ba3a43133eb408c7dc390ae25d..6d892bf809c6e4c17403501073ebef6b2c6c1afe 100644 (file)
@@ -625,8 +625,7 @@ class CRM_Activity_BAO_Activity extends CRM_Activity_DAO_Activity {
    * @return bool
    */
   public static function logActivityAction($activity, $logMessage = NULL) {
-    $session = CRM_Core_Session::singleton();
-    $id = $session->get('userID');
+    $id = CRM_Core_Session::getLoggedInContactID();
     if (!$id) {
       $activityContacts = CRM_Core_OptionGroup::values('activity_contacts', FALSE, FALSE, FALSE, NULL, 'name');
       $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
@@ -1194,8 +1193,7 @@ LEFT JOIN civicrm_activity_contact src ON (src.activity_id = ac.activity_id AND
   ) {
     // get the contact details of logged in contact, which we set as from email
     if ($userID == NULL) {
-      $session = CRM_Core_Session::singleton();
-      $userID = $session->get('userID');
+      $userID = CRM_Core_Session::getLoggedInContactID();
     }
 
     list($fromDisplayName, $fromEmail, $fromDoNotEmail) = CRM_Contact_BAO_Contact::getContactDetails($userID);
@@ -1381,8 +1379,7 @@ LEFT JOIN civicrm_activity_contact src ON (src.activity_id = ac.activity_id AND
     $userID = NULL
   ) {
     if ($userID == NULL) {
-      $session = CRM_Core_Session::singleton();
-      $userID = $session->get('userID');
+      $userID = CRM_Core_Session::getLoggedInContactID();
     }
 
     $text = &$activityParams['sms_text_message'];
@@ -1881,8 +1878,7 @@ SELECT  display_name
       $activityParams['id'] = $activity->activity_id;
     }
     // create activity with target contacts
-    $session = CRM_Core_Session::singleton();
-    $id = $session->get('userID');
+    $id = CRM_Core_Session::getLoggedInContactID();
     if ($id) {
       $activityParams['source_contact_id'] = $id;
       $activityParams['target_contact_id'][] = $activity->contact_id;
@@ -2069,11 +2065,9 @@ AND cl.modified_id  = c.id
       return NULL;
     }
 
-    $session = CRM_Core_Session::singleton();
-
     $followupParams = array();
     $followupParams['parent_id'] = $activityId;
-    $followupParams['source_contact_id'] = $session->get('userID');
+    $followupParams['source_contact_id'] = CRM_Core_Session::getLoggedInContactID();
     $followupParams['status_id'] = CRM_Core_OptionGroup::getValue('activity_status', 'Scheduled', 'name');
 
     $followupParams['activity_type_id'] = $params['followup_activity_type_id'];
index 7ccdf0bffd2a80bb8ebb891b199f7f3dd27d1ecb..128803bc8c2c77df69ae77df01cd1f09112d3d87 100644 (file)
@@ -115,8 +115,7 @@ class CRM_Activity_BAO_ICalendar {
    * @return string
    */
   private function getPrimaryEmail() {
-    $session = &CRM_Core_Session::singleton();
-    $uid = $session->get('userID');
+    $uid = CRM_Core_Session::getLoggedInContactID();
     $primary = '';
     $emails = CRM_Core_BAO_Email::allEmails($uid);
     foreach ($emails as $eid => $e) {
index 9100fc80f22ff05a1d30489ee38b2ff2718ecfdb..5d2d1fd8a4de165d6161f91e6742f25f61c9ce21 100644 (file)
@@ -228,7 +228,7 @@ class CRM_Activity_Form_Activity extends CRM_Contact_Form_Task {
     }
 
     $session = CRM_Core_Session::singleton();
-    $this->_currentUserId = $session->get('userID');
+    $this->_currentUserId = CRM_Core_Session::getLoggedInContactID();
 
     $this->_currentlyViewedContactId = $this->get('contactId');
     if (!$this->_currentlyViewedContactId) {
index 19b19acdc6421a09ff856a6938322ce766eb77e9..6718e53f1cde04801d1c0997f4477a0a33f61e3d 100644 (file)
@@ -57,8 +57,7 @@ class CRM_Activity_Form_ActivityFilter extends CRM_Core_Form {
   public function setDefaultValues() {
     // CRM-11761 retrieve user's activity filter preferences
     $defaults = array();
-    $session = CRM_Core_Session::singleton();
-    $userID = $session->get('userID');
+    $userID = CRM_Core_Session::getLoggedInContactID();
     if ($userID) {
       $defaults = Civi::service('settings_manager')
         ->getBagByContact(NULL, $userID)
index 3f5f09a2e68eda2acb9a542923f1bf984772e940..3b3d4d6cb9814107402aeb71cea4836328ca9751 100644 (file)
@@ -47,8 +47,7 @@ class CRM_Contact_Page_DashBoard extends CRM_Core_Page {
     $this->assign('contactDashlets', CRM_Core_BAO_Dashboard::getContactDashletsForJS());
 
     CRM_Utils_System::setTitle(ts('CiviCRM Home'));
-    $session = CRM_Core_Session::singleton();
-    $contactID = $session->get('userID');
+    $contactID = CRM_Core_Session::getLoggedInContactID();
 
     // call hook to get html from other modules
     // ignored but needed to prevent warnings
index d64620e3f66e81adb472e6432a7c86e6390d7ad8..91e560c6c7f5b5bfa72f18c75f1be8d72d92a76c 100644 (file)
@@ -100,7 +100,7 @@ class CRM_Core_BAO_Dashboard extends CRM_Core_DAO_Dashboard {
    *   array of dashlets
    */
   public static function getContactDashlets($contactID = NULL) {
-    $contactID = $contactID ? $contactID : CRM_Core_Session::singleton()->getLoggedInContactID();
+    $contactID = $contactID ? $contactID : CRM_Core_Session::getLoggedInContactID();
     $dashlets = array();
 
     // Get contact dashboard dashlets.
@@ -184,7 +184,7 @@ class CRM_Core_BAO_Dashboard extends CRM_Core_DAO_Dashboard {
         'domain_id' => CRM_Core_Config::domainID(),
         'option.limit' => 0,
       ));
-    $contactID = CRM_Core_Session::singleton()->getLoggedInContactID();
+    $contactID = CRM_Core_Session::getLoggedInContactID();
     $allDashlets = CRM_Utils_Array::index(array('name'), $getDashlets['values']);
     $defaultDashlets = array();
     $defaults = array('blog' => 1, 'getting-started' => '0');
index 0cc415529084e4fc1fcfdd797e68a49fb6a2ba8b..56e6eee1520654b1d6a2bb9704ba804e4259e54e 100644 (file)
@@ -554,7 +554,7 @@ class CRM_Core_Session {
    * @throws CiviCRM_API3_Exception
    */
   public function getLoggedInContactDisplayName() {
-    $userContactID = CRM_Core_Session::singleton()->getLoggedInContactID();
+    $userContactID = CRM_Core_Session::getLoggedInContactID();
     if (!$userContactID) {
       return '';
     }
index d020bb1480d75c1968763963b243a1c06c7af244..b99d9b83964ec18daa1224863f3da8f2846a5e61 100644 (file)
@@ -379,7 +379,7 @@ class CRM_Dedupe_Finder {
       $displayNames[$dao->id] = $dao->display_name;
     }
 
-    $userId = CRM_Core_Session::singleton()->getLoggedInContactID();
+    $userId = CRM_Core_Session::getLoggedInContactID();
     foreach ($foundDupes as $dupes) {
       $srcID = $dupes[1];
       $dstID = $dupes[0];
index 7fc34e205aed7cb54519f2e79eb21c05953877b5..c955de51bf5807b98b8eda407b9885d0fe83e9f9 100644 (file)
@@ -146,8 +146,7 @@ class CRM_Event_BAO_Event extends CRM_Event_DAO_Event {
       return $event;
     }
 
-    $session = CRM_Core_Session::singleton();
-    $contactId = $session->get('userID');
+    $contactId = CRM_Core_Session::getLoggedInContactID();
     if (!$contactId) {
       $contactId = CRM_Utils_Array::value('contact_id', $params);
     }
index 7fb43dd98480ec446f8b320ba82fe2c9f7ffc09d..499907e5cb6027470547f0815233dc352e0bf5df 100644 (file)
@@ -97,7 +97,7 @@ class CRM_Mailing_Page_View extends CRM_Core_Page {
       $this->_contactID = $contactID;
     }
     else {
-      $this->_contactID = CRM_Core_Session::singleton()->getLoggedInContactID();
+      $this->_contactID = CRM_Core_Session::getLoggedInContactID();
     }
 
     // mailing key check
index b726dfaf3c214e2d9129c32782708102f447da33..3d76c10641cc09f9d31d85bb27b2202a4816954a 100644 (file)
@@ -368,7 +368,7 @@ class CRM_Report_Form_Instance {
     // CRM-17310 my reports functionality - we should set owner if the checkbox is 1,
     // it seems to be not set at all if unchecked.
     if (!empty($formValues['add_to_my_reports'])) {
-      $params['owner_id'] = CRM_Core_Session::singleton()->getLoggedInContactID();
+      $params['owner_id'] = CRM_Core_Session::getLoggedInContactID();
     }
     else {
       $params['owner_id'] = 'null';