INFRA-132 - CRM/Mailing - Misc
authorTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 22:56:56 +0000 (14:56 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 23:07:48 +0000 (15:07 -0800)
12 files changed:
CRM/Mailing/BAO/Mailing.php
CRM/Mailing/BAO/Query.php
CRM/Mailing/BAO/Recipients.php
CRM/Mailing/Event/BAO/Bounce.php
CRM/Mailing/Event/BAO/Delivered.php
CRM/Mailing/Event/BAO/Forward.php
CRM/Mailing/Event/BAO/Opened.php
CRM/Mailing/Event/BAO/Queue.php
CRM/Mailing/Event/BAO/Reply.php
CRM/Mailing/Event/BAO/TrackableURLOpen.php
CRM/Mailing/Event/BAO/Unsubscribe.php
CRM/Mailing/Selector/Search.php

index df9f779966e962b9e31aae0f5920afa8b4565e1a..fb921c9d62b43e9c0703b3ffd2d9fe426dfc156d 100644 (file)
@@ -1173,7 +1173,8 @@ ORDER BY   civicrm_email.is_bulkmail DESC
    *
    * @return Mail_mime               The mail object
    */
-  public function &compose($job_id, $event_queue_id, $hash, $contactId,
+  public function &compose(
+    $job_id, $event_queue_id, $hash, $contactId,
     $email, &$recipient, $test,
     $contactDetails, &$attachments, $isForward = FALSE,
     $fromEmail = NULL, $replyToEmail = NULL
index 064260c1d2108cb833802e8c60e8a4722ee1daca..979dbcc3025902f7390c1a5deeb908d141047828 100644 (file)
@@ -197,7 +197,8 @@ class CRM_Mailing_BAO_Query {
    *
    * @return array|null
    */
-  static function defaultReturnProperties($mode,
+  static function defaultReturnProperties(
+    $mode,
     $includeCustomFields = TRUE
   ) {
 
index 9978c2016612e99ef7b738f3c2ce5c269c19c3be..71d0704f556b5a18b082c6acb0ef2fb8c89c537a 100644 (file)
@@ -63,7 +63,8 @@ WHERE  mailing_id = %1
    *
    * @return Object
    */
-  static function mailingQuery($mailingID,
+  static function mailingQuery(
+    $mailingID,
     $offset = NULL, $limit = NULL
   ) {
     $limitString = NULL;
index 754f49ed3f15514a867319e778f001602c352a7c..4435343cb9b0d5fa151b04799ef6c1d557d4ec67 100755 (executable)
@@ -191,7 +191,8 @@ class CRM_Mailing_Event_BAO_Bounce extends CRM_Mailing_Event_DAO_Bounce {
    * @return array                Result set
    * @static
    */
-  public static function &getRows($mailing_id, $job_id = NULL,
+  public static function &getRows(
+    $mailing_id, $job_id = NULL,
     $is_distinct = FALSE, $offset = NULL, $rowCount = NULL, $sort = NULL
   ) {
 
index 99a4ae88d944ee4a549d3c3ab5448fe15cceeaaf..f072617d0bb274ec672362c1efc8923e40ecfe38 100755 (executable)
@@ -159,7 +159,8 @@ class CRM_Mailing_Event_BAO_Delivered extends CRM_Mailing_Event_DAO_Delivered {
    * @return array                Result set
    * @static
    */
-  public static function &getRows($mailing_id, $job_id = NULL,
+  public static function &getRows(
+    $mailing_id, $job_id = NULL,
     $is_distinct = FALSE, $offset = NULL, $rowCount = NULL, $sort = NULL, $is_test = 0
   ) {
 
index 81ffbdcb95a67089b71b174419beb1e8e0f06ac4..c0a2b261049711f3b3f62a36329d0013ef810375 100644 (file)
@@ -226,7 +226,8 @@ class CRM_Mailing_Event_BAO_Forward extends CRM_Mailing_Event_DAO_Forward {
    * @return int                  Number of rows in result set
    * @static
    */
-  public static function getTotalCount($mailing_id, $job_id = NULL,
+  public static function getTotalCount(
+    $mailing_id, $job_id = NULL,
     $is_distinct = FALSE
   ) {
     $dao = new CRM_Core_DAO();
@@ -285,7 +286,8 @@ class CRM_Mailing_Event_BAO_Forward extends CRM_Mailing_Event_DAO_Forward {
    * @return array                Result set
    * @static
    */
-  public static function &getRows($mailing_id, $job_id = NULL,
+  public static function &getRows(
+    $mailing_id, $job_id = NULL,
     $is_distinct = FALSE, $offset = NULL, $rowCount = NULL, $sort = NULL
   ) {
 
index f0b53107d4feea457355a74353fa38d35d2c1fc2..5810f76936915f7704ceb62d48fd157d7e95545e 100755 (executable)
@@ -81,7 +81,8 @@ class CRM_Mailing_Event_BAO_Opened extends CRM_Mailing_Event_DAO_Opened {
    * @return int                  Number of rows in result set
    * @static
    */
-  public static function getTotalCount($mailing_id,
+  public static function getTotalCount(
+    $mailing_id,
     $job_id = NULL,
     $is_distinct = FALSE,
     $toDate = NULL
@@ -228,7 +229,8 @@ class CRM_Mailing_Event_BAO_Opened extends CRM_Mailing_Event_DAO_Opened {
    * @return array                Result set
    * @static
    */
-  public static function &getRows($mailing_id, $job_id = NULL,
+  public static function &getRows(
+    $mailing_id, $job_id = NULL,
     $is_distinct = FALSE, $offset = NULL, $rowCount = NULL, $sort = NULL, $contact_id = NULL
   ) {
     $dao = new CRM_Core_Dao();
index 0cf3d467d43145c67ce165e417086921f4c3e90a..b459ff8bfc8239c7d9228159fdaa823baa5b7f3b 100644 (file)
@@ -184,7 +184,8 @@ class CRM_Mailing_Event_BAO_Queue extends CRM_Mailing_Event_DAO_Queue {
    * @return array                Result set
    * @static
    */
-  public static function &getRows($mailing_id, $job_id = NULL, $offset = NULL,
+  public static function &getRows(
+    $mailing_id, $job_id = NULL, $offset = NULL,
     $rowCount = NULL, $sort = NULL
   ) {
     $dao = new CRM_Core_Dao();
index 646f6762f4a27c906be4fb0e889079b4d097180f..7c33b6f6e55b6946ac755db536830d2e49c74888 100644 (file)
@@ -316,7 +316,8 @@ class CRM_Mailing_Event_BAO_Reply extends CRM_Mailing_Event_DAO_Reply {
    * @return int                  Number of rows in result set
    * @static
    */
-  public static function getTotalCount($mailing_id, $job_id = NULL,
+  public static function getTotalCount(
+    $mailing_id, $job_id = NULL,
     $is_distinct = FALSE
   ) {
     $dao = new CRM_Core_DAO();
@@ -375,7 +376,8 @@ class CRM_Mailing_Event_BAO_Reply extends CRM_Mailing_Event_DAO_Reply {
    * @return array                Result set
    * @static
    */
-  public static function &getRows($mailing_id, $job_id = NULL,
+  public static function &getRows(
+    $mailing_id, $job_id = NULL,
     $is_distinct = FALSE, $offset = NULL, $rowCount = NULL, $sort = NULL
   ) {
 
index 8b1a0b21013cd73d1e13d085777c724de2edd512..42641297f69fa04112211703f9b928bcd32ca275 100755 (executable)
@@ -110,7 +110,8 @@ class CRM_Mailing_Event_BAO_TrackableURLOpen extends CRM_Mailing_Event_DAO_Track
    * @return int                  Number of rows in result set
    * @static
    */
-  public static function getTotalCount($mailing_id, $job_id = NULL,
+  public static function getTotalCount(
+    $mailing_id, $job_id = NULL,
     $is_distinct = FALSE, $url_id = NULL, $toDate = NULL
   ) {
     $dao = new CRM_Core_DAO();
@@ -261,7 +262,8 @@ class CRM_Mailing_Event_BAO_TrackableURLOpen extends CRM_Mailing_Event_DAO_Track
    * @return array                Result set
    * @static
    */
-  public static function &getRows($mailing_id, $job_id = NULL,
+  public static function &getRows(
+    $mailing_id, $job_id = NULL,
     $is_distinct = FALSE, $url_id,
     $offset = NULL, $rowCount = NULL, $sort = NULL, $contact_id = NULL
   ) {
index 0cc94106d700012990163246e9cf8bf54738bc97..b765a77cc0a2ea5926fd0f7d630fe7e58963a04b 100755 (executable)
@@ -427,7 +427,8 @@ WHERE  email = %2
    * @return int                  Number of rows in result set
    * @static
    */
-  public static function getTotalCount($mailing_id, $job_id = NULL,
+  public static function getTotalCount(
+    $mailing_id, $job_id = NULL,
     $is_distinct = FALSE, $org_unsubscribe = NULL, $toDate = NULL
   ) {
     $dao = new CRM_Core_DAO();
@@ -498,7 +499,8 @@ WHERE  email = %2
    * @return array                Result set
    * @static
    */
-  public static function &getRows($mailing_id, $job_id = NULL,
+  public static function &getRows(
+    $mailing_id, $job_id = NULL,
     $is_distinct = FALSE, $offset = NULL, $rowCount = NULL, $sort = NULL,
     $org_unsubscribe = NULL
   ) {
index 393149939aeee9927a359773bf616f01287a8c10..2173cc9ba9b064b20223813e3c53a07596eb5c6c 100644 (file)
@@ -151,7 +151,8 @@ class CRM_Mailing_Selector_Search extends CRM_Core_Selector_Base implements CRM_
    * @return \CRM_Mailing_Selector_Search
   @access public
    */
-  function __construct(&$queryParams,
+  function __construct(
+    &$queryParams,
     $action = CRM_Core_Action::NONE,
     $mailingClause = NULL,
     $single = FALSE,