CRM-15965: Resolved strict warning re compatibility of declaration of contactIDs...
authorFrank J. Gómez <frank@ginkgostreet.com>
Sun, 1 Mar 2015 20:44:29 +0000 (15:44 -0500)
committerFrank J. Gómez <frank@ginkgostreet.com>
Sun, 1 Mar 2015 20:44:29 +0000 (15:44 -0500)
CRM/Contact/Form/Search/Custom/ActivitySearch.php
CRM/Contact/Form/Search/Custom/ContribSYBNT.php
CRM/Contact/Form/Search/Custom/ContributionAggregate.php
CRM/Contact/Form/Search/Custom/EmployerListing.php
CRM/Contact/Form/Search/Custom/EventAggregate.php
CRM/Contact/Form/Search/Custom/TagContributions.php

index 265452b5ac2ab9311f68c3efd03a4b311c1c7fda..2ad3b5be3febaae8cc960107da6891d574feb88a 100644 (file)
@@ -373,10 +373,11 @@ ORDER BY contact_a.sort_name';
    * @param int $offset
    * @param int $rowcount
    * @param null $sort
+   * @param boolean $returnSQL Not used; included for consistency with parent; SQL is always returned
    *
    * @return string
    */
-  function contactIDs($offset = 0, $rowcount = 0, $sort = NULL) {
+  function contactIDs($offset = 0, $rowcount = 0, $sort = NULL, $returnSQL = TRUE) {
     return $this->all($offset, $rowcount, $sort, FALSE, TRUE);
   }
 
index b5b86470c552be66c8f9ea4829c0209ad1bd7fc4..a72397d45f20871dcce366989ad99a08a4ec2bfe 100644 (file)
@@ -126,10 +126,11 @@ class CRM_Contact_Form_Search_Custom_ContribSYBNT extends CRM_Contact_Form_Searc
    * @param int $offset
    * @param int $rowcount
    * @param null $sort
+   * @param boolean $returnSQL Not used; included for consistency with parent; SQL is always returned
    *
    * @return string
    */
-  function contactIDs($offset = 0, $rowcount = 0, $sort = NULL) {
+  function contactIDs($offset = 0, $rowcount = 0, $sort = NULL, $returnSQL = TRUE) {
     return $this->all($offset, $rowcount, $sort, FALSE, TRUE);
   }
 
index d743b126734ec8de76de66fc5f5c99f2be640977..3c7f67a9a16eadec9f099f8515fa55f5d80529b9 100644 (file)
@@ -261,10 +261,11 @@ civicrm_contact AS contact_a
    * @param int $offset
    * @param int $rowcount
    * @param null $sort
+   * @param boolean $returnSQL Not used; included for consistency with parent; SQL is always returned
    *
    * @return string
    */
-  function contactIDs($offset = 0, $rowcount = 0, $sort = NULL) {
+  function contactIDs($offset = 0, $rowcount = 0, $sort = NULL, $returnSQL = TRUE) {
     return $this->all($offset, $rowcount, $sort, FALSE, TRUE);
   }
 
index 64978524c272a147244d3157b7bbbfe57f9daaa4..a0781502399a362174cd967c1ec7b950564bb409 100644 (file)
@@ -261,10 +261,11 @@ class CRM_Contact_Form_Search_Custom_EmployerListing extends CRM_Contact_Form_Se
    * @param int $offset
    * @param int $rowcount
    * @param null $sort
+   * @param boolean $returnSQL Not used; included for consistency with parent; SQL is always returned
    *
    * @return string
    */
-  function contactIDs($offset = 0, $rowcount = 0, $sort = NULL) {
+  function contactIDs($offset = 0, $rowcount = 0, $sort = NULL, $returnSQL = TRUE) {
     return $this->all($offset, $rowcount, $sort);
   }
 
index f250e223dc6d67679d74ba4538a19717bfbf86a2..a4dd867da4680fd45ed4ed79d8c8059bb1667396 100644 (file)
@@ -315,10 +315,11 @@ class CRM_Contact_Form_Search_Custom_EventAggregate extends CRM_Contact_Form_Sea
    * @param int $offset
    * @param int $rowcount
    * @param null $sort
+   * @param boolean $returnSQL Not used; included for consistency with parent; SQL is always returned
    *
    * @return string
    */
-  function contactIDs($offset = 0, $rowcount = 0, $sort = NULL) {
+  function contactIDs($offset = 0, $rowcount = 0, $sort = NULL, $returnSQL = TRUE) {
     return $this->all($offset, $rowcount, $sort);
   }
 
index 34591a85ac58b40d509cb69d3c604dba725c6233..2f7133f4b821fcb3adb42bd28712872f822884c5 100644 (file)
@@ -225,10 +225,11 @@ WHERE  $where
    * @param int $offset
    * @param int $rowcount
    * @param null $sort
+   * @param boolean $returnSQL Not used; included for consistency with parent; SQL is always returned
    *
    * @return string
    */
-  function contactIDs($offset = 0, $rowcount = 0, $sort = NULL) {
+  function contactIDs($offset = 0, $rowcount = 0, $sort = NULL, $returnSQL = TRUE) {
     return $this->all($offset, $rowcount, $sort, FALSE, TRUE);
   }