CRM-16952 wrap getContactID function
authoreileenmcnaugton <eileen@fuzion.co.nz>
Mon, 3 Aug 2015 01:52:48 +0000 (13:52 +1200)
committereileenmcnaugton <eileen@fuzion.co.nz>
Mon, 3 Aug 2015 01:52:48 +0000 (13:52 +1200)
CRM/Core/Form.php

index 550f0da54b17eab30574ccd8bb34e088c2e0831f..f06c10f8fc9ef2968f45c2e79f02750537732382 100644 (file)
@@ -1861,7 +1861,7 @@ class CRM_Core_Form extends HTML_QuickForm_Page {
    *
    * @return NULL|int
    */
-  public function getContactID() {
+  protected function setContactID() {
     $tempID = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
     if (isset($this->_params) && isset($this->_params['select_contact_id'])) {
       $tempID = $this->_params['select_contact_id'];
@@ -1904,6 +1904,10 @@ class CRM_Core_Form extends HTML_QuickForm_Page {
     return is_numeric($userID) ? $userID : NULL;
   }
 
+  public function getContactID() {
+    return $this->setContactID();
+  }
+
   /**
    * Get the contact id of the logged in user.
    */