Comment fixes for CRM/Mailing directory.
authorSaurabh Batra <saurabh.batra96@gmail.com>
Fri, 2 Oct 2015 07:11:21 +0000 (12:41 +0530)
committerSaurabh Batra <saurabh.batra96@gmail.com>
Fri, 2 Oct 2015 07:11:21 +0000 (12:41 +0530)
58 files changed:
CRM/Mailing/BAO/BouncePattern.php
CRM/Mailing/BAO/Component.php
CRM/Mailing/BAO/Mailing.php
CRM/Mailing/BAO/MailingAB.php
CRM/Mailing/BAO/MailingJob.php
CRM/Mailing/BAO/Query.php
CRM/Mailing/BAO/Recipients.php
CRM/Mailing/BAO/Spool.php
CRM/Mailing/BAO/TrackableURL.php
CRM/Mailing/Config.php
CRM/Mailing/Controller/Send.php
CRM/Mailing/Event/BAO/Bounce.php
CRM/Mailing/Event/BAO/Confirm.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/Resubscribe.php
CRM/Mailing/Event/BAO/Subscribe.php
CRM/Mailing/Event/BAO/TrackableURLOpen.php
CRM/Mailing/Event/BAO/Unsubscribe.php
CRM/Mailing/Form/Approve.php
CRM/Mailing/Form/Browse.php
CRM/Mailing/Form/Component.php
CRM/Mailing/Form/ForwardMailing.php
CRM/Mailing/Form/Optout.php
CRM/Mailing/Form/Search.php
CRM/Mailing/Form/Subscribe.php
CRM/Mailing/Form/Task.php
CRM/Mailing/Form/Task/AdhocMailing.php
CRM/Mailing/Form/Task/Print.php
CRM/Mailing/Form/Unsubscribe.php
CRM/Mailing/Info.php
CRM/Mailing/MailStore.php
CRM/Mailing/MailStore/Imap.php
CRM/Mailing/MailStore/Localdir.php
CRM/Mailing/MailStore/Maildir.php
CRM/Mailing/MailStore/Mbox.php
CRM/Mailing/MailStore/Pop3.php
CRM/Mailing/Page/AJAX.php
CRM/Mailing/Page/Browse.php
CRM/Mailing/Page/Common.php
CRM/Mailing/Page/Component.php
CRM/Mailing/Page/Confirm.php
CRM/Mailing/Page/Event.php
CRM/Mailing/Page/Optout.php
CRM/Mailing/Page/Preview.php
CRM/Mailing/Page/Report.php
CRM/Mailing/Page/Resubscribe.php
CRM/Mailing/Page/Tab.php
CRM/Mailing/Page/Unsubscribe.php
CRM/Mailing/Page/View.php
CRM/Mailing/PseudoConstant.php
CRM/Mailing/Selector/Browse.php
CRM/Mailing/Selector/Event.php
CRM/Mailing/Selector/Search.php
CRM/Mailing/Task.php

index 0dd36eba67cd0ace3e253fee6e6bfea89881ada6..bc1afee78b909deb513f32982bf65e6d535ad6d3 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_BAO_BouncePattern extends CRM_Mailing_DAO_BouncePattern {
 
   /**
-   * Pseudo-constant pattern array
+   * Pseudo-constant pattern array.
    */
   static $_patterns = NULL;
 
@@ -48,8 +46,6 @@ class CRM_Mailing_BAO_BouncePattern extends CRM_Mailing_DAO_BouncePattern {
 
   /**
    * Build the static pattern array.
-   *
-   * @return void
    */
   public static function buildPatterns() {
     self::$_patterns = array();
index b9200ddb576aade28cd6a8d1d3cce6b2e101e308..0aa771faac903519dcd628b81e47509a84df14d9 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_BAO_Component extends CRM_Mailing_DAO_Component {
 
@@ -49,7 +47,7 @@ class CRM_Mailing_BAO_Component extends CRM_Mailing_DAO_Component {
    * @param array $defaults
    *   (reference ) an assoc array to hold the flattened values.
    *
-   * @return CRM_Core_BAO_LocaationType
+   * @return CRM_Core_BAO_LocationType.
    */
   public static function retrieve(&$params, &$defaults) {
     $component = new CRM_Mailing_DAO_Component();
@@ -85,7 +83,6 @@ class CRM_Mailing_BAO_Component extends CRM_Mailing_DAO_Component {
    *   (deprecated) the array that holds all the db ids.
    *
    * @return CRM_Mailing_BAO_Component
-   *
    */
   public static function add(&$params, $ids = array()) {
     $id = CRM_Utils_Array::value('id', $params, CRM_Utils_Array::value('id', $ids));
index 9d123ab3f0884d7cff64cada15d4d69b3580e8cb..67f7e58fa496ba26df7b9ae7680197b538a04e86 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 require_once 'Mail/mime.php';
 
@@ -42,54 +40,54 @@ class CRM_Mailing_BAO_Mailing extends CRM_Mailing_DAO_Mailing {
   /**
    * An array that holds the complete templates
    * including any headers or footers that need to be prepended
-   * or appended to the body
+   * or appended to the body.
    */
   private $preparedTemplates = NULL;
 
   /**
    * An array that holds the complete templates
    * including any headers or footers that need to be prepended
-   * or appended to the body
+   * or appended to the body.
    */
   private $templates = NULL;
 
   /**
-   * An array that holds the tokens that are specifically found in our text and html bodies
+   * An array that holds the tokens that are specifically found in our text and html bodies.
    */
   private $tokens = NULL;
 
   /**
-   * An array that holds the tokens that are specifically found in our text and html bodies
+   * An array that holds the tokens that are specifically found in our text and html bodies.
    */
   private $flattenedTokens = NULL;
 
   /**
-   * The header associated with this mailing
+   * The header associated with this mailing.
    */
   private $header = NULL;
 
   /**
-   * The footer associated with this mailing
+   * The footer associated with this mailing.
    */
   private $footer = NULL;
 
   /**
-   * The HTML content of the message
+   * The HTML content of the message.
    */
   private $html = NULL;
 
   /**
-   * The text content of the message
+   * The text content of the message.
    */
   private $text = NULL;
 
   /**
-   * Cached BAO for the domain
+   * Cached BAO for the domain.
    */
   private $_domain = NULL;
 
   /**
-   * Class constructor
+   * Class constructor.
    */
   public function __construct() {
     parent::__construct();
@@ -105,14 +103,14 @@ class CRM_Mailing_BAO_Mailing extends CRM_Mailing_DAO_Mailing {
    */
   public static function getRecipientsCount($job_id, $mailing_id = NULL) {
     // need this for backward compatibility, so we can get count for old mailings
-    // please do not use this function if possible
+    // please do not use this function if possible.
     $eq = self::getRecipients($job_id, $mailing_id);
     return $eq->N;
   }
 
   /**
    * note that $job_id is used only as a variable in the temp table construction
-   * and does not play a role in the queries generated
+   * and does not play a role in the queries generated.
    * @param int $job_id
    *   (misnomer) a nonce value used to name temporary tables.
    * @param int $mailing_id
@@ -192,15 +190,15 @@ class CRM_Mailing_BAO_Mailing extends CRM_Mailing_DAO_Mailing {
         $order_by = "ORDER BY $email.is_bulkmail";
     }
 
-    /* Create a temp table for contact exclusion */
+    // Create a temp table for contact exclusion.
     $mailingGroup->query(
       "CREATE TEMPORARY TABLE X_$job_id
             (contact_id int primary key)
             ENGINE=HEAP"
     );
 
-    /* Add all the members of groups excluded from this mailing to the temp
-     * table */
+    // Add all the members of groups excluded from this mailing to the temp
+    // table.
 
     $excludeSubGroup = "INSERT INTO        X_$job_id (contact_id)
                     SELECT  DISTINCT    $g2contact.contact_id
@@ -213,8 +211,8 @@ class CRM_Mailing_BAO_Mailing extends CRM_Mailing_DAO_Mailing {
                         AND             $mg.group_type = 'Exclude'";
     $mailingGroup->query($excludeSubGroup);
 
-    /* Add all unsubscribe members of base group from this mailing to the temp
-     * table */
+    // Add all unsubscribe members of base group from this mailing to the temp
+    // table.
 
     $unSubscribeBaseGroup = "INSERT INTO        X_$job_id (contact_id)
                     SELECT  DISTINCT    $g2contact.contact_id
@@ -227,8 +225,8 @@ class CRM_Mailing_BAO_Mailing extends CRM_Mailing_DAO_Mailing {
                         AND             $mg.group_type = 'Base'";
     $mailingGroup->query($unSubscribeBaseGroup);
 
-    /* Add all the (intended) recipients of an excluded prior mailing to
-     * the temp table */
+    // Add all the (intended) recipients of an excluded prior mailing to
+    // the temp table.
 
     $excludeSubMailing = "INSERT IGNORE INTO X_$job_id (contact_id)
                     SELECT  DISTINCT    $eq.contact_id
@@ -276,7 +274,7 @@ WHERE  c.group_id = {$groupDAO->id}
       $tempColumn = 'phone_id';
     }
 
-    /* Get all the group contacts we want to include */
+    // Get all the group contacts we want to include.
 
     $mailingGroup->query(
       "CREATE TEMPORARY TABLE I_$job_id
@@ -284,8 +282,8 @@ WHERE  c.group_id = {$groupDAO->id}
             ENGINE=HEAP"
     );
 
-    /* Get the group contacts, but only those which are not in the
-     * exclusion temp table */
+    // Get the group contacts, but only those which are not in the
+    // exclusion temp table.
 
     $query = "REPLACE INTO       I_$job_id (email_id, contact_id)
 
@@ -347,7 +345,7 @@ WHERE  c.group_id = {$groupDAO->id}
     }
     $mailingGroup->query($query);
 
-    /* Query prior mailings */
+    // Query prior mailings.
 
     $query = "REPLACE INTO       I_$job_id (email_id, contact_id)
                     SELECT DISTINCT     $email.id as email_id,
@@ -453,9 +451,7 @@ WHERE      gc.group_id = {$groupDAO->id}
       $mailingGroup->query($smartGroupInclude);
     }
 
-    /**
-     * Construct the filtered search queries
-     */
+    // Construct the filtered search queries.
     $query = "
 SELECT search_id, search_args, entity_id
 FROM   $mg
@@ -473,7 +469,7 @@ AND    $mg.mailing_id = {$mailing_id}
       $mailingGroup->query($query);
     }
 
-    /* Get the emails with only location override */
+    // Get the emails with only location override.
 
     $query = "REPLACE INTO       I_$job_id (email_id, contact_id)
                     SELECT DISTINCT     $email.id as local_email_id,
@@ -567,7 +563,7 @@ ORDER BY   i.contact_id, i.{$tempColumn}
       }
     }
 
-    /* Delete the temp table */
+    // Delete the temp table.
 
     $mailingGroup->reset();
     $mailingGroup->query("DROP TEMPORARY TABLE X_$job_id");
index 2865da682df8c81843d72c11a01791395645d600..ddaa5247c144f260a917840005dbeed999129bca 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
@@ -117,8 +115,6 @@ class CRM_Mailing_BAO_MailingAB extends CRM_Mailing_DAO_MailingAB {
    *
    * @param int $id
    *   Id of the mail to delete.
-   *
-   * @return void
    */
   public static function del($id) {
     if (empty($id)) {
index 0eca1a7cdf04b0248930521cc5924122143c5220..adb4ddb0427eefd2c72f3ad92235c3b6e9d0215c 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 require_once 'Mail.php';
@@ -84,8 +82,6 @@ class CRM_Mailing_BAO_MailingJob extends CRM_Mailing_DAO_MailingJob {
    *
    * @param array $testParams
    * @param null $mode
-   *
-   * @return void
    */
   public static function runJobs($testParams = NULL, $mode = NULL) {
     $job = new CRM_Mailing_BAO_MailingJob();
@@ -198,7 +194,7 @@ class CRM_Mailing_BAO_MailingJob extends CRM_Mailing_DAO_MailingJob {
 
       // Mark the child complete
       if ($isComplete) {
-        /* Finish the job */
+        // Finish the job.
 
         $transaction = new CRM_Core_Transaction();
 
@@ -223,8 +219,8 @@ class CRM_Mailing_BAO_MailingJob extends CRM_Mailing_DAO_MailingJob {
   }
 
   /**
-   * post process to determine if the parent job.
-   * as well as the mailing is complete after the run
+   * Post process to determine if the parent job
+   * as well as the mailing is complete after the run.
    * @param null $mode
    */
   public static function runJobs_post($mode = NULL) {
@@ -478,8 +474,6 @@ VALUES (%1, %2, %3, %4, %5, %6, %7)
    *   A Mail object to send the messages.
    *
    * @param array $testParams
-   *
-   * @return void
    */
   public function deliver(&$mailer, $testParams = NULL) {
     $mailing = new CRM_Mailing_BAO_Mailing();
@@ -566,7 +560,7 @@ VALUES (%1, %2, %3, %4, %5, %6, %7)
 
     // CRM-12376
     // This handles the edge case scenario where all the mails
-    // have been delivered in prior jobs
+    // have been delivered in prior jobs.
     $isDelivered = TRUE;
 
     // make sure that there's no more than $mailerBatchLimit mails processed in a run
@@ -634,11 +628,9 @@ VALUES (%1, %2, %3, %4, %5, %6, %7)
     $params = $targetParams = $deliveredParams = array();
     $count = 0;
 
-    /**
-     * CRM-15702: Sending bulk sms to contacts without e-mail address fails.
-     * Solution is to skip checking for on hold
-     */
-    $skipOnHold = TRUE; //do include a statement to check wether e-mail address is on hold
+     // CRM-15702: Sending bulk sms to contacts without e-mail address fails.
+     // Solution is to skip checking for on hold
+    $skipOnHold = TRUE;    //do include a statement to check wether e-mail address is on hold
     if ($mailing->sms_provider_id) {
       $skipOnHold = FALSE; //do not include a statement to check wether e-mail address is on hold
     }
@@ -663,7 +655,7 @@ VALUES (%1, %2, %3, %4, %5, %6, %7)
         $details[0][$contactID] = array();
       }
 
-      /* Compose the mailing */
+      // Compose the mailing.
       $recipient = $replyToEmail = NULL;
       $replyValue = strcmp($mailing->replyto_email, $mailing->from_email);
       if ($replyValue) {
@@ -683,7 +675,7 @@ VALUES (%1, %2, %3, %4, %5, %6, %7)
         continue;
       }
 
-      /* Send the mailing */
+      // Send the mailing.
 
       $body = &$message->get();
       $headers = &$message->headers();
@@ -740,7 +732,7 @@ VALUES (%1, %2, %3, %4, %5, %6, %7)
           CRM_Utils_System::civiExit();
         }
 
-        /* Register the bounce event */
+        // Register the bounce event.
 
         $params = array(
           'event_queue_id' => $field['id'],
@@ -760,7 +752,7 @@ VALUES (%1, %2, %3, %4, %5, %6, %7)
         CRM_Core_Error::debug_log_message($result->getMessage());
       }
       else {
-        /* Register the delivery event */
+        // Register the delivery event.
         $deliveredParams[] = $field['id'];
         $targetParams[] = $field['contact_id'];
 
index 983a690f3fe86fecf1aa6b3496bf8a8d2b87fa52..372868819ee62692b8384f3ca0a2a889ff84879f 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_BAO_Query {
 
@@ -55,8 +53,6 @@ class CRM_Mailing_BAO_Query {
    * If mailings are involved, add the specific Mailing fields
    *
    * @param $query
-   *
-   * @return void
    */
   public static function select(&$query) {
     // if Mailing mode add mailing id
@@ -399,7 +395,6 @@ class CRM_Mailing_BAO_Query {
    *
    *
    * @param CRM_Core_Form $form
-   * @return void
    */
   public static function buildSearchForm(&$form) {
     // mailing selectors
@@ -468,8 +463,6 @@ class CRM_Mailing_BAO_Query {
    * @param $fieldTitle
    *
    * @param $valueTitles
-   *
-   * @return void
    */
   public static function mailingEventQueryBuilder(&$query, &$values, $tableName, $fieldName, $fieldTitle, &$valueTitles) {
     list($name, $op, $value, $grouping, $wildcard) = $values;
index 17ccf27118c6ca3bd8e6595d7b8b851776fcf836..971e4727ef1d4d51cf63f5aa635088dc4a8648b9 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_BAO_Recipients extends CRM_Mailing_DAO_Recipients {
 
index 6177da52f80eaa103151a1e74386f13d907ae057..708ca0e3b62acfb9dfe8e41823b1f502f5a22dbb 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_BAO_Spool extends CRM_Mailing_DAO_Spool {
 
@@ -90,7 +88,7 @@ class CRM_Mailing_BAO_Spool extends CRM_Mailing_DAO_Spool {
       }
 
       $job = new CRM_Mailing_BAO_MailingJob();
-      $job->is_test = 0; // if set to 1 it doesn't show in the UI
+      $job->is_test = 0;  // if set to 1 it doesn't show in the UI
       $job->status = 'Complete';
       $job->scheduled_date = CRM_Utils_Date::processDate(date('Y-m-d'), date('H:i:s'));
       $job->start_date = $job->scheduled_date;
index d440565c841fc97746726982174d5a4a55457e8b..a7e6b4b8410af2751895bb9053d2bf540e91eeee 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_BAO_TrackableURL extends CRM_Mailing_DAO_TrackableURL {
 
index 19c9a7dbe517e675bb1f9dd79f4c8a2d24f51419..26c6a2ecf785bced9625b441470d2a64337b6913 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Config {
 
index acf3fd2a2bca511a4fecfa9d51ead3451b0c107d..73ba40b9e269f381fda02c73113c36d902ab745a 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Controller_Send extends CRM_Core_Controller {
 
index 985e5e7bb34cc8072769267f10f00ea25082ea66..1f3cedc2d4d225ae7e75f1d9754dc3da45bf2865 100755 (executable)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Event_BAO_Bounce extends CRM_Mailing_Event_DAO_Bounce {
 
index 8b477994b4903d0a7769fc759c73256e944a7560..e45762abb7d4af2e6f93589dce366db46e83f42a 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 require_once 'Mail/mime.php';
index 9dd10ea549595b5d8f14e118c9a025abf6666320..fa1f7089228d3051ca2e0079dbfbdd531337bfe3 100755 (executable)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Event_BAO_Delivered extends CRM_Mailing_Event_DAO_Delivered {
 
@@ -46,8 +44,6 @@ class CRM_Mailing_Event_BAO_Delivered extends CRM_Mailing_Event_DAO_Delivered {
    *
    * @param array $params
    *   Associative array of delivery event values.
-   *
-   * @return void
    */
   public static function &create(&$params) {
     $q = &CRM_Mailing_Event_BAO_Queue::verify($params['job_id'],
@@ -264,7 +260,7 @@ class CRM_Mailing_Event_BAO_Delivered extends CRM_Mailing_Event_DAO_Delivered {
   }
 
   /**
-   * Since we never no when a mailing really bounces (hard bounce == NOW, soft bounce == NOW to NOW + 3 days?)
+   * Since we never know when a mailing really bounces (hard bounce == NOW, soft bounce == NOW to NOW + 3 days?)
    * we cannot decide when an email address last got an email.
    *
    * We want to avoid putting on hold an email address which had a few bounces (mbox full) and then got quite a few
@@ -278,8 +274,6 @@ class CRM_Mailing_Event_BAO_Delivered extends CRM_Mailing_Event_DAO_Delivered {
    *   Consider mailings that were completed at least $minDays ago.
    * @param int $maxDays
    *   Consider mailings that were completed not more than $maxDays ago.
-   *
-   * @return void
    */
   public static function updateEmailResetDate($minDays = 3, $maxDays = 7) {
     $dao = new CRM_Core_Dao();
index 4eca519539dce566b7ce9f20d91a3dd3386a444a..133cb61a5f029bef3b0a1a5f8ea3bbc9f155f4b9 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Event_BAO_Forward extends CRM_Mailing_Event_DAO_Forward {
 
@@ -62,7 +60,7 @@ class CRM_Mailing_Event_BAO_Forward extends CRM_Mailing_Event_DAO_Forward {
       return $successfulForward;
     }
 
-    /* Find the email address/contact, if it exists */
+    // Find the email address/contact, if it exists.
 
     $contact = CRM_Contact_BAO_Contact::getTableName();
     $location = CRM_Core_BAO_Location::getTableName();
@@ -100,8 +98,8 @@ class CRM_Mailing_Event_BAO_Forward extends CRM_Mailing_Event_DAO_Forward {
     if (isset($dao->queue_id) ||
       (isset($dao->do_not_email) && $dao->do_not_email == 1)
     ) {
-      /* We already sent this mailing to $forward_email, or we should
-       * never email this contact.  Give up. */
+      // We already sent this mailing to $forward_email, or we should
+      // never email this contact.  Give up.
 
       return $successfulForward;
     }
@@ -115,7 +113,7 @@ class CRM_Mailing_Event_BAO_Forward extends CRM_Mailing_Event_DAO_Forward {
     $count = $contactValues['count'];
 
     if ($count == 0) {
-      /* If the contact does not exist, create one. */
+      // If the contact does not exist, create one.
 
       $formatted = array(
         'contact_type' => 'Individual',
@@ -144,7 +142,7 @@ class CRM_Mailing_Event_BAO_Forward extends CRM_Mailing_Event_DAO_Forward {
       $contact_id = $email->contact_id;
     }
 
-    /* Create a new queue event */
+    // Create a new queue event.
 
     $queue_params = array(
       'email_id' => $email_id,
@@ -203,7 +201,7 @@ class CRM_Mailing_Event_BAO_Forward extends CRM_Mailing_Event_DAO_Forward {
       'hash' => $queue->hash,
     );
     if (is_a($result, 'PEAR_Error')) {
-      /* Register the bounce event */
+      // Register the bounce event.
 
       $params = array_merge($params,
         CRM_Mailing_BAO_BouncePattern::match($result->getMessage())
@@ -212,7 +210,7 @@ class CRM_Mailing_Event_BAO_Forward extends CRM_Mailing_Event_DAO_Forward {
     }
     else {
       $successfulForward = TRUE;
-      /* Register the delivery event */
+      // Register the delivery event.
 
       CRM_Mailing_Event_BAO_Delivered::create($params);
     }
index ba27308e34b602f14d63b38bbe9e32eb08f47acb..2d42a67726cb8813360927777954daa20824e11f 100755 (executable)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Event_BAO_Opened extends CRM_Mailing_Event_DAO_Opened {
 
@@ -46,11 +44,9 @@ class CRM_Mailing_Event_BAO_Opened extends CRM_Mailing_Event_DAO_Opened {
    *
    * @param int $queue_id
    *   The Queue Event ID of the recipient.
-   *
-   * @return void
    */
   public static function open($queue_id) {
-    /* First make sure there's a matching queue event */
+    // First make sure there's a matching queue event.
 
     $success = FALSE;
 
index 441dae9e0f6e4fe6d234259c45f6494e94f2838b..0d356a2c71e35a30ec26c573e0625844c4e8f652 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Event_BAO_Queue extends CRM_Mailing_Event_DAO_Queue {
 
index 989f73f94dbca2517e55fb4beb2e9e51b7c4f177..bd2f8f5f1c835b65e411a604a5bd8bb0fa7ca256 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 require_once 'Mail/mime.php';
@@ -66,7 +64,7 @@ class CRM_Mailing_Event_BAO_Reply extends CRM_Mailing_Event_DAO_Reply {
    *   The mailing object, or null on failure
    */
   public static function &reply($job_id, $queue_id, $hash, $replyto = NULL) {
-    /* First make sure there's a matching queue event */
+    // First make sure there's a matching queue event.
 
     $q = CRM_Mailing_Event_BAO_Queue::verify($job_id, $queue_id, $hash);
 
@@ -117,8 +115,6 @@ class CRM_Mailing_Event_BAO_Reply extends CRM_Mailing_Event_DAO_Reply {
    *   HTML part of the body (ignored if $fullEmail provided).
    * @param string $fullEmail
    *   Whole email to forward in one string.
-   *
-   * @return void
    */
   public static function send($queue_id, &$mailing, &$bodyTxt, $replyto, &$bodyHTML = NULL, &$fullEmail = NULL) {
     $domain = CRM_Core_BAO_Domain::getDomain();
@@ -219,8 +215,6 @@ class CRM_Mailing_Event_BAO_Reply extends CRM_Mailing_Event_DAO_Reply {
    *   The queue ID.
    * @param string $replyto
    *   Optional reply-to from the reply.
-   *
-   * @return void
    */
   private static function autoRespond(&$mailing, $queue_id, $replyto) {
     $config = CRM_Core_Config::singleton();
@@ -263,7 +257,7 @@ class CRM_Mailing_Event_BAO_Reply extends CRM_Mailing_Event_DAO_Reply {
       'Return-Path' => "do-not-reply@$emailDomain",
     );
 
-    /* TODO: do we need reply tokens? */
+    // TODO: do we need reply tokens?
 
     $html = $component->body_html;
     if ($component->body_text) {
index 7203f76bffb72c9b283d6585bf6af8d7b03d9e1d..6ad69fb87d1e08b7af5f1bf2a3805381f426e7e9 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 require_once 'Mail/mime.php';
@@ -54,7 +52,7 @@ class CRM_Mailing_Event_BAO_Resubscribe {
    *   $groups    Array of all groups to which the contact was added, or null if the queue event could not be found.
    */
   public static function &resub_to_mailing($job_id, $queue_id, $hash) {
-    /* First make sure there's a matching queue event */
+    // First make sure there's a matching queue event.
 
     $q = CRM_Mailing_Event_BAO_Queue::verify($job_id, $queue_id, $hash);
     $success = NULL;
@@ -81,7 +79,7 @@ class CRM_Mailing_Event_BAO_Resubscribe {
     $group = CRM_Contact_BAO_Group::getTableName();
     $gc = CRM_Contact_BAO_GroupContact::getTableName();
 
-    //We Need the mailing Id for the hook...
+    // We Need the mailing Id for the hook...
     $do->query("SELECT $job.mailing_id as mailing_id
                      FROM   $job
                      WHERE $job.id = " . CRM_Utils_Type::escape($job_id, 'Integer'));
@@ -101,9 +99,8 @@ class CRM_Mailing_Event_BAO_Resubscribe {
                 AND     $group.is_hidden = 0"
     );
 
-    /* Make a list of groups and a list of prior mailings that received
-     * this mailing */
-
+    // Make a list of groups and a list of prior mailings that received
+    // this mailing.
     $groups = array();
     $mailings = array();
 
@@ -116,9 +113,8 @@ class CRM_Mailing_Event_BAO_Resubscribe {
       }
     }
 
-    /* As long as we have prior mailings, find their groups and add to the
-     * list */
-
+    // As long as we have prior mailings, find their groups and add to the
+    // list.
     while (!empty($mailings)) {
       $do->query("
                 SELECT      $mg.entity_table as entity_table,
@@ -143,9 +139,8 @@ class CRM_Mailing_Event_BAO_Resubscribe {
     $base_groups = NULL;
     CRM_Utils_Hook::unsubscribeGroups('resubscribe', $mailing_id, $contact_id, $group_ids, $base_groups);
 
-    /* Now we have a complete list of recipient groups.  Filter out all
-     * those except smart groups and those that the contact belongs to */
-
+    // Now we have a complete list of recipient groups.  Filter out all
+    // those except smart groups and those that the contact belongs to.
     $do->query("
             SELECT      $group.id as group_id,
                         $group.title as title
@@ -197,8 +192,6 @@ class CRM_Mailing_Event_BAO_Resubscribe {
    *   Is this domain-level?.
    * @param int $job
    *   The job ID.
-   *
-   * @return void
    */
   public static function send_resub_response($queue_id, $groups, $is_domain = FALSE, $job) {
     // param is_domain is not supported as of now.
index bf024c819e36560226358d6a2c2d07ce342b87f0..9b53cceb66609080e83d9f3b63e2ad252ba7538e 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 
@@ -85,7 +83,7 @@ class CRM_Mailing_Event_BAO_Subscribe extends CRM_Mailing_Event_DAO_Subscribe {
       $contact_id = $contactId;
     }
     else {
-      /* First, find out if the contact already exists */
+      // First, find out if the contact already exists.
 
       $query = "
    SELECT DISTINCT contact_a.id as contact_id
@@ -108,7 +106,7 @@ LEFT JOIN civicrm_email      ON contact_a.id = civicrm_email.contact_id
     if (!$contact_id) {
       require_once 'CRM/Utils/DeprecatedUtils.php';
 
-      /* If the contact does not exist, create one. */
+      // If the contact does not exist, create one.
 
       $formatted = array(
         'contact_type' => 'Individual',
@@ -137,7 +135,7 @@ LEFT JOIN civicrm_email      ON contact_a.id = civicrm_email.contact_id
       return $success;
     }
 
-    /* Get the primary email id from the contact to use as a hash input */
+    // Get the primary email id from the contact to use as a hash input.
 
     $dao = new CRM_Core_DAO();
 
@@ -205,8 +203,6 @@ SELECT     civicrm_email.id as email_id
    *
    * @param string $email
    *   The email address.
-   *
-   * @return void
    */
   public function send_confirm_request($email) {
     $config = CRM_Core_Config::singleton();
@@ -376,8 +372,6 @@ SELECT     civicrm_email.id as email_id
    *   Specifically to avoid linking group to wrong duplicate contact
    *   during event registration.
    * @param string $context
-   *
-   * @return void
    */
   public static function commonSubscribe(&$groups, &$params, $contactId = NULL, $context = NULL) {
     $contactGroups = CRM_Mailing_Event_BAO_Subscribe::getContactGroups($params['email'], $contactId);
index f516728b1c22a202dc0ca24251f47158dc1b4b8e..c937eec528bcbdef6e5e8229e79ca5341ae73f53 100755 (executable)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Event_BAO_TrackableURLOpen extends CRM_Mailing_Event_DAO_TrackableURLOpen {
 
@@ -57,8 +55,8 @@ class CRM_Mailing_Event_BAO_TrackableURLOpen extends CRM_Mailing_Event_DAO_Track
 
     $search = new CRM_Mailing_BAO_TrackableURL();
 
-    /* To find the url, we also join on the queue and job tables.  This
-     * prevents foreign key violations. */
+    // To find the url, we also join on the queue and job tables.  This
+    // prevents foreign key violations. 
 
     $job = CRM_Mailing_BAO_MailingJob::getTableName();
     $eq = CRM_Mailing_Event_BAO_Queue::getTableName();
@@ -81,7 +79,7 @@ class CRM_Mailing_Event_BAO_TrackableURLOpen extends CRM_Mailing_Event_DAO_Track
     );
 
     if (!$search->fetch()) {
-      /* Whoops, error, don't track it.  Return the base url. */
+      // Whoops, error, don't track it.  Return the base url.
 
       return CRM_Utils_System::baseURL();
     }
index 0be9d85dbe4cb7fdb8fec8bb246f071a6a14aa8c..e80199b78efda8a9cd28ce24f03c5a3b460777a7 100755 (executable)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 require_once 'Mail/mime.php';
@@ -129,7 +127,7 @@ WHERE  email = %2
    *   $groups    Array of all groups from which the contact was removed, or null if the queue event could not be found.
    */
   public static function &unsub_from_mailing($job_id, $queue_id, $hash, $return = FALSE) {
-    /* First make sure there's a matching queue event */
+    // First make sure there's a matching queue event.
 
     $q = CRM_Mailing_Event_BAO_Queue::verify($job_id, $queue_id, $hash);
     $success = NULL;
@@ -173,8 +171,8 @@ WHERE  email = %2
                 AND     $group.is_hidden = 0"
     );
 
-    /* Make a list of groups and a list of prior mailings that received
-     * this mailing */
+    // Make a list of groups and a list of prior mailings that received
+    // this mailing.
 
     $groups = array();
     $base_groups = array();
@@ -194,8 +192,8 @@ WHERE  email = %2
       }
     }
 
-    /* As long as we have prior mailings, find their groups and add to the
-     * list */
+    // As long as we have prior mailings, find their groups and add to the
+    // list.
 
     while (!empty($mailings)) {
       $do->query("
@@ -222,9 +220,9 @@ WHERE  email = %2
     $base_group_ids = array_keys($base_groups);
     CRM_Utils_Hook::unsubscribeGroups('unsubscribe', $mailing_id, $contact_id, $group_ids, $base_group_ids);
 
-    /* Now we have a complete list of recipient groups.  Filter out all
-     * those except smart groups, those that the contact belongs to and
-     * base groups from search based mailings */
+    // Now we have a complete list of recipient groups.  Filter out all
+    // those except smart groups, those that the contact belongs to and
+    // base groups from search based mailings.
 
     $baseGroupClause = '';
     if (!empty($base_group_ids)) {
@@ -303,8 +301,6 @@ WHERE  email = %2
    *   Is this domain-level?.
    * @param int $job
    *   The job ID.
-   *
-   * @return void
    */
   public static function send_unsub_response($queue_id, $groups, $is_domain = FALSE, $job) {
     $config = CRM_Core_Config::singleton();
index 8658e79dd42387e5e0faa0dc5630f5e7529d228e..764810ca9ecfcea4663e36cb1ede0896a9bffc26 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
- */
-
-/**
- *
  */
 class CRM_Mailing_Form_Approve extends CRM_Core_Form {
 
@@ -45,8 +39,6 @@ class CRM_Mailing_Form_Approve extends CRM_Core_Form {
 
   /**
    * Set variables up before form is built.
-   *
-   * @return void
    */
   public function preProcess() {
     if (CRM_Mailing_Info::workflowEnabled()) {
@@ -81,9 +73,6 @@ class CRM_Mailing_Form_Approve extends CRM_Core_Form {
 
   /**
    * Set default values for the form.
-   *
-   *
-   * @return void
    */
   public function setDefaultValues() {
     $defaults = array();
@@ -96,11 +85,7 @@ class CRM_Mailing_Form_Approve extends CRM_Core_Form {
   }
 
   /**
-   * Build the form object for the approval/rejection mailing
-   *
-   * @param
-   *
-   * @return void
+   * Build the form object for the approval/rejection mailing.
    */
   public function buildQuickform() {
     $title = ts('Approve/Reject Mailing') . " - {$this->_mailing->name}";
@@ -158,10 +143,6 @@ class CRM_Mailing_Form_Approve extends CRM_Core_Form {
 
   /**
    * Process the posted form values.  Approve /reject a mailing.
-   *
-   * @param
-   *
-   * @return void
    */
   public function postProcess() {
     // get the submitted form values.
index f749817a94de8a17d1a3b92dbbe0f161c9d8bcde..9be619f9739bd90f4fb5e158f469112d22021ad9 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
  * Build the form object for disable mail feature
- *
- * @param
- *
- * @return void
  */
 class CRM_Mailing_Form_Browse extends CRM_Core_Form {
 
   /**
    * Heart of the viewing process. The runner gets all the meta data for
    * the contact and calls the appropriate type of page to view.
-   *
-   * @return void
    */
   public function preProcess() {
     $this->_mailingId = CRM_Utils_Request::retrieve('mid', 'Positive', $this);
@@ -68,8 +60,6 @@ class CRM_Mailing_Form_Browse extends CRM_Core_Form {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     $this->addButtons(array(
@@ -86,10 +76,6 @@ class CRM_Mailing_Form_Browse extends CRM_Core_Form {
     );
   }
 
-  /**
-   *
-   * @return void
-   */
   public function postProcess() {
     if ($this->_action & CRM_Core_Action::DELETE) {
       CRM_Mailing_BAO_Mailing::del($this->_mailingId);
index c76a2ba29467df015693b69b9b0b606e96d7963e..3af70648a9d15096b405e182e9c2db53a823c171 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class generates form components for Location Type
- *
+ * This class generates form components for Location Type.
  */
 class CRM_Mailing_Form_Component extends CRM_Core_Form {
 
@@ -60,8 +57,6 @@ class CRM_Mailing_Form_Component extends CRM_Core_Form {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     $this->applyFilter('__ALL__', 'trim');
@@ -109,9 +104,6 @@ class CRM_Mailing_Form_Component extends CRM_Core_Form {
 
   /**
    * Set default values for the form.
-   *
-   *
-   * @return void
    */
   public function setDefaultValues() {
     $defaults = array();
@@ -131,9 +123,6 @@ class CRM_Mailing_Form_Component extends CRM_Core_Form {
 
   /**
    * Process the form submission.
-   *
-   *
-   * @return void
    */
   public function postProcess() {
     // store the submitted values in an array
index 9dbd02f52887b2b4e33bbfa1b746506782e1d14f..cf667c0fac0a02f095d8077f961791b8bc4e63a9 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Form_ForwardMailing extends CRM_Core_Form {
   public function preProcess() {
@@ -48,7 +46,7 @@ class CRM_Mailing_Form_ForwardMailing extends CRM_Core_Form {
 
     if ($q == NULL) {
 
-      /** ERROR **/
+      // ERROR.
       CRM_Core_Error::fatal(ts('Invalid form parameters.'));
       CRM_Core_Error::statusBounce(ts('Invalid form parameters.'));
     }
@@ -60,8 +58,8 @@ class CRM_Mailing_Form_ForwardMailing extends CRM_Core_Form {
       $this->assign('fromEmail', $fromEmail);
     }
 
-    /* Show the subject instead of the name here, since it's being
-     * displayed to external contacts/users */
+    // Show the subject instead of the name here, since it's being
+    // displayed to external contacts/users.
 
     CRM_Utils_System::setTitle(ts('Forward Mailing: %1', array(1 => $mailing->subject)));
 
@@ -72,8 +70,6 @@ class CRM_Mailing_Form_ForwardMailing extends CRM_Core_Form {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     for ($i = 0; $i < 5; $i++) {
@@ -103,9 +99,6 @@ class CRM_Mailing_Form_ForwardMailing extends CRM_Core_Form {
 
   /**
    * Form submission of new/edit contact is processed.
-   *
-   *
-   * @return void
    */
   public function postProcess() {
     $queue_id = $this->get('queue_id');
index 0cf53fba3d771b2afe61ff5a7247f6eba550efeb..3785b8f5f5f285a5a66d37a1bffc6740b70a4616 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Form_Optout extends CRM_Core_Form {
 
index 83596aa70cd2bbed9e6a5cd33f06120fec82a642..085e3c1a5a93edfce77f3cfcf2ae8e11e0180818 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Form_Search extends CRM_Core_Form {
 
index 9fe688e0ea73a71cf956d9908edcedbc6a5b35fe..8bc3bbda75d04c1daaacbcb6de292b75ac1df00f 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Form_Subscribe extends CRM_Core_Form {
   protected $_groupID = NULL;
@@ -77,8 +75,6 @@ SELECT   title, description
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     // add the email address
@@ -140,9 +136,9 @@ ORDER BY title";
       $addCaptcha = FALSE;
     }
     else {
-      // if this is POST request and came from a block,
-      // lets add recaptcha only if already present
-      // gross hack for now
+      // If this is POST request and came from a block,
+      // lets add recaptcha only if already present.
+      // Gross hack for now.
       if (!empty($_POST) &&
         !array_key_exists('recaptcha_challenge_field', $_POST)
       ) {
@@ -185,10 +181,6 @@ ORDER BY title";
     return array('_qf_default' => 'Please select one or more mailing lists.');
   }
 
-  /**
-   *
-   * @return void
-   */
   public function postProcess() {
     $params = $this->controller->exportValues($this->_name);
 
index 2c77fb696231803af68a694fc21b90a026b1a797..0b4802247fbc21def82b7afb52df39c4cd7749fc 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
  * This class generates form components for relationship
- *
  */
 class CRM_Mailing_Form_Task extends CRM_Core_Form {
 
@@ -62,10 +59,6 @@ class CRM_Mailing_Form_Task extends CRM_Core_Form {
 
   /**
    * Build all the data structures needed to build the form.
-   *
-   * @param
-   *
-   * @return void
    */
   public function preProcess() {
     self::preProcessCommon($this);
@@ -113,7 +106,7 @@ class CRM_Mailing_Form_Task extends CRM_Core_Form {
       $form->_componentClause = ' civicrm_mailing_recipients.id IN ( ' . implode(',', $ids) . ' ) ';
     }
 
-    //set the context for redirection for any task actions
+    // set the context for redirection for any task actions
     $session = CRM_Core_Session::singleton();
 
     $fragment = 'search';
@@ -141,9 +134,6 @@ class CRM_Mailing_Form_Task extends CRM_Core_Form {
    * @param string $nextType
    * @param string $backType
    * @param bool $submitOnce
-   *
-   *
-   * @return void
    */
   public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
     $this->addButtons(array(
index 06c3f801185e241d0f7a4c864abe6470a96ecfd7..2361c9af33f41bd16d463fdf6f4a31253664ac56 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
index 951278c701a7b36523fb0d774bf9f3206e7c20bb..1e341f5a4d5cd77ed747c00896df4f22e34aa607 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
@@ -40,8 +38,6 @@ class CRM_Mailing_Form_Task_Print extends CRM_Mailing_Form_Task {
 
   /**
    * Build all the data structures needed to build the form.
-   *
-   * @return void
    */
   public function preProcess() {
     parent::preprocess();
@@ -68,10 +64,7 @@ class CRM_Mailing_Form_Task_Print extends CRM_Mailing_Form_Task {
   /**
    * Build the form object - it consists of
    *    - displaying the QILL (query in local language)
-   *    - displaying elements for saving the search
-   *
-   *
-   * @return void
+   *    - displaying elements for saving the search.
    */
   public function buildQuickForm() {
     //
@@ -94,9 +87,6 @@ class CRM_Mailing_Form_Task_Print extends CRM_Mailing_Form_Task {
 
   /**
    * Process the form after the input has been submitted and validated.
-   *
-   *
-   * @return void
    */
   public function postProcess() {
     // redirect to the main search page after printing is over
index 46fedeb56bb22d097ceb349f4ded5bf109c93841..84b0a0d7e6e1abe16b32bff0f4945373dc12c7ef 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Form_Unsubscribe extends CRM_Core_Form {
 
index 1ee43684510743b55c9af11fd4bce40439bbc716..de3f23678b6b329ded33d5089000ede214fd58e3 100644 (file)
@@ -32,8 +32,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Info extends CRM_Core_Component_Info {
 
@@ -58,7 +56,7 @@ class CRM_Mailing_Info extends CRM_Core_Component_Info {
   }
 
   /**
-   * Get AngularJS modules and their dependencies
+   * Get AngularJS modules and their dependencies.
    *
    * @return array
    *   list of modules; same format as CRM_Utils_Hook::angularModules(&$angularModules)
@@ -97,8 +95,8 @@ class CRM_Mailing_Info extends CRM_Core_Component_Info {
     $session = CRM_Core_Session::singleton();
     $contactID = $session->get('userID');
 
-    // Get past mailings
-    // CRM-16155 - Limit to a reasonable number
+    // Get past mailings.
+    // CRM-16155 - Limit to a reasonable number.
     $civiMails = civicrm_api3('Mailing', 'get', array(
       'is_completed' => 1,
       'mailing_type' => array('IN' => array('standalone', 'winner')),
@@ -110,7 +108,7 @@ class CRM_Mailing_Info extends CRM_Core_Component_Info {
         'sort' => 'is_archived asc, scheduled_date desc',
       ),
     ));
-    // Generic params
+    // Generic params.
     $params = array(
       'options' => array('limit' => 0),
       'sequential' => 1,
index 79a6c989504e08440d0590c957c3b634de597344..10cb7d6ba21e792643a94ad2fb60f0096b761c97 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_MailStore {
   // flag to decide whether to print debug messages
   var $_debug = FALSE;
 
   /**
-   * Return the proper mail store implementation, based on config settings
+   * Return the proper mail store implementation, based on config settings.
    *
    * @param string $name
    *   Name of the settings set from civimail_mail_settings to use (null for default).
@@ -94,7 +92,7 @@ class CRM_Mailing_MailStore {
   }
 
   /**
-   * Expunge the messages marked for deletion; stub function to be redefined by IMAP store
+   * Expunge the messages marked for deletion; stub function to be redefined by IMAP store.
    */
   public function expunge() {
   }
index b69bf36131326192ce236c74df6fb4627a65304f..f40ef3d664f55cb8ec3201afdb2bc74ef7fd0e62 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 require_once 'ezc/Base/src/ezc_bootstrap.php';
@@ -103,8 +101,6 @@ class CRM_Mailing_MailStore_Imap extends CRM_Mailing_MailStore {
    *
    * @param int $nr
    *   Number of the message to move.
-   *
-   * @return void
    */
   public function markIgnored($nr) {
     if ($this->_debug) {
@@ -120,8 +116,6 @@ class CRM_Mailing_MailStore_Imap extends CRM_Mailing_MailStore {
    *
    * @param int $nr
    *   Number of the message to move.
-   *
-   * @return void
    */
   public function markProcessed($nr) {
     if ($this->_debug) {
index c9618516feeca684a135a7917e413f4591e89348..a2a08a4d38a81fda308766757dcb5eb5d33718a4 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 require_once 'ezc/Base/src/ezc_bootstrap.php';
@@ -102,7 +100,7 @@ class CRM_Mailing_MailStore_Localdir extends CRM_Mailing_MailStore {
 
       $set = new ezcMailFileSet(array($file));
       $parser = new ezcMailParser();
-      //set property text attachment as file CRM-5408
+      // set property text attachment as file CRM-5408
       $parser->options->parseTextAttachmentsAsFiles = TRUE;
 
       $mail = $parser->parseMail($set);
@@ -131,7 +129,6 @@ class CRM_Mailing_MailStore_Localdir extends CRM_Mailing_MailStore {
    *   File location of the message to fetch.
    *
    * @throws Exception
-   * @return void
    */
   public function markIgnored($file) {
     if ($this->_debug) {
@@ -150,7 +147,6 @@ class CRM_Mailing_MailStore_Localdir extends CRM_Mailing_MailStore {
    *   File location of the message to fetch.
    *
    * @throws Exception
-   * @return void
    */
   public function markProcessed($file) {
     if ($this->_debug) {
index bf48c97caf9f459254862056ffad3a1f6bbe5c7c..5a00f290ae953d365c5dfa36ebfa40980c9c248d 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 require_once 'ezc/Base/src/ezc_bootstrap.php';
@@ -79,7 +77,7 @@ class CRM_Mailing_MailStore_Maildir extends CRM_Mailing_MailStore {
   public function fetchNext($count = 0) {
     $mails = array();
     $parser = new ezcMailParser();
-    //set property text attachment as file CRM-5408
+    // set property text attachment as file CRM-5408
     $parser->options->parseTextAttachmentsAsFiles = TRUE;
 
     foreach (array(
@@ -114,7 +112,6 @@ class CRM_Mailing_MailStore_Maildir extends CRM_Mailing_MailStore {
    *   File location of the message to fetch.
    *
    * @throws Exception
-   * @return void
    */
   public function markIgnored($file) {
     if ($this->_debug) {
@@ -133,7 +130,6 @@ class CRM_Mailing_MailStore_Maildir extends CRM_Mailing_MailStore {
    *   File location of the message to fetch.
    *
    * @throws Exception
-   * @return void
    */
   public function markProcessed($file) {
     if ($this->_debug) {
index dc3d0d6eec28364b7e7284d6f960ba23ea651274..75d1490d55582a65c3b936bd2275abad06a9284b 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 require_once 'ezc/Base/src/ezc_bootstrap.php';
@@ -70,9 +68,7 @@ class CRM_Mailing_MailStore_Mbox extends CRM_Mailing_MailStore {
   }
 
   /**
-   * Empty the mail source (if it was processed fully) and unlock the file
-   *
-   * @return void
+   * Empty the mail source (if it was processed fully) and unlock the file.
    */
   public function __destruct() {
     if ($this->_leftToProcess === 0) {
@@ -90,8 +86,6 @@ class CRM_Mailing_MailStore_Mbox extends CRM_Mailing_MailStore {
    *
    * @param int $nr
    *   Number of the message to fetch.
-   *
-   * @return void
    */
   public function markIgnored($nr) {
     if ($this->_debug) {
@@ -108,8 +102,6 @@ class CRM_Mailing_MailStore_Mbox extends CRM_Mailing_MailStore {
    *
    * @param int $nr
    *   Number of the message to fetch.
-   *
-   * @return void
    */
   public function markProcessed($nr) {
     if ($this->_debug) {
index 6819b01df90fd94358ce88166b2258001cc4e267..c31febfe44aace61ccc0a7922f6bf8c09d0cc5a6 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 require_once 'ezc/Base/src/ezc_bootstrap.php';
@@ -83,8 +81,6 @@ class CRM_Mailing_MailStore_Pop3 extends CRM_Mailing_MailStore {
    *
    * @param int $nr
    *   Number of the message to fetch.
-   *
-   * @return void
    */
   public function markIgnored($nr) {
     if ($this->_debug) {
@@ -101,8 +97,6 @@ class CRM_Mailing_MailStore_Pop3 extends CRM_Mailing_MailStore {
    *
    * @param int $nr
    *   Number of the message to fetch.
-   *
-   * @return void
    */
   public function markProcessed($nr) {
     if ($this->_debug) {
index 3ae841cf674d6f120c33380bfbd8540db5db9f61..fb93d523fa7978218240dcc4f4199d3a5526d292 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
index a50bbaea470de77cf561240d25ecd91b9c9a3eb7..5d3675fa1dfd09927846f1c0c8702134f0c441dc 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
@@ -50,14 +48,14 @@ class CRM_Mailing_Page_Browse extends CRM_Core_Page {
   /**
    * The mailing id of the mailing we're operating on
    *
-   * @int
+   * @var int
    */
   protected $_mailingId;
 
   /**
    * The action that we are performing (in CRM_Core_Action terms)
    *
-   * @int
+   * @var int
    */
   protected $_action;
 
@@ -69,7 +67,7 @@ class CRM_Mailing_Page_Browse extends CRM_Core_Page {
   /**
    * Scheduled mailing.
    *
-   * @boolean
+   * @var boolean
    */
   public $_scheduled;
 
@@ -78,8 +76,6 @@ class CRM_Mailing_Page_Browse extends CRM_Core_Page {
   /**
    * Heart of the viewing process. The runner gets all the meta data for
    * the contact and calls the appropriate type of page to view.
-   *
-   * @return void
    */
   public function preProcess() {
     $this->_unscheduled = $this->_archived = $archiveLinks = FALSE;
@@ -114,8 +110,6 @@ class CRM_Mailing_Page_Browse extends CRM_Core_Page {
 
   /**
    * Run this page (figure out the action needed and perform it).
-   *
-   * @return void
    */
   public function run() {
     $this->preProcess();
@@ -201,9 +195,9 @@ class CRM_Mailing_Page_Browse extends CRM_Core_Page {
       }
     }
     elseif ($this->_action & CRM_Core_Action::RENEW) {
-      //archive this mailing, CRM-3752.
+      // archive this mailing, CRM-3752.
       if (CRM_Utils_Request::retrieve('confirmed', 'Boolean', $this)) {
-        //set is_archived to 1
+        // set is_archived to 1
         CRM_Core_DAO::setFieldValue('CRM_Mailing_DAO_Mailing', $this->_mailingId, 'is_archived', TRUE);
         CRM_Utils_System::redirect($context);
       }
@@ -232,7 +226,7 @@ class CRM_Mailing_Page_Browse extends CRM_Core_Page {
     $controller->setEmbedded(TRUE);
     $controller->run();
 
-    //hack to display results as per search
+    // hack to display results as per search
     $rows = $controller->getRows($controller);
 
     $this->assign('rows', $rows);
@@ -276,8 +270,8 @@ class CRM_Mailing_Page_Browse extends CRM_Core_Page {
     $url = CRM_Utils_System::url($urlString, $urlParams);
     $session->pushUserContext($url);
 
-    //CRM-6862 -run form cotroller after
-    //selector, since it erase $_POST
+    // CRM-6862 -run form cotroller after
+    // selector, since it erase $_POST
     $this->search();
 
     return parent::run();
@@ -312,7 +306,7 @@ class CRM_Mailing_Page_Browse extends CRM_Core_Page {
 
     $clauses = array();
     $title = $this->get('mailing_name');
-    //echo " name=$title  ";
+    // echo " name=$title  ";
     if ($title) {
       $clauses[] = 'name LIKE %1';
       if (strpos($title, '%') !== FALSE) {
index 7002e901d9cae06da0295b68ea598792ae5c71de..812d15c451153e5f320cc11ff4d509a41689e253 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Page_Common extends CRM_Core_Page {
   protected $_type = NULL;
@@ -121,7 +119,7 @@ class CRM_Mailing_Page_Common extends CRM_Core_Page {
         "reset=1&jid={$job_id}&qid={$queue_id}&h={$hash}&confirm=1"
       );
       $this->assign('confirmURL', $confirmURL);
-      //push context for further process CRM-4431
+      // push context for further process CRM-4431
       $session = CRM_Core_Session::singleton();
       $session->pushUserContext($confirmURL);
     }
index 425a83ce8769bdd943b495886602254f47f71ef4..e930782dedf9f723c37ea17375e2c2a6e69bbbe4 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
index c9f08bc69339bbc1a22e002f99a0ff5595d7e0f8..82a695ed7d3ed14662a95f6f49fe2600409c6da6 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Page_Confirm extends CRM_Core_Page {
   /**
index 82205d3c28ce2aad7dccc60044bc0122436d62f6..1744393d36dd18c63107a45a824663104d2afb78 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
@@ -49,8 +47,6 @@ class CRM_Mailing_Page_Event extends CRM_Core_Page {
 
   /**
    * Run this page (figure out the action needed and perform it).
-   *
-   * @return void
    */
   public function run() {
     $selector = &new CRM_Mailing_Selector_Event(
@@ -63,7 +59,7 @@ class CRM_Mailing_Page_Event extends CRM_Core_Page {
 
     $mailing_id = CRM_Utils_Request::retrieve('mid', 'Positive', $this);
 
-    //assign backurl
+    // assign backurl
     $context = CRM_Utils_Request::retrieve('context', 'String', $this);
 
     if ($context == 'activitySelector') {
index 409a478d10633307da466afd03c3d03811dce530..2292b289ca885137ef7c62d9d69c2c467ced4a14 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Page_Optout extends CRM_Mailing_Page_Common {
   /**
index 0277650c0858df187b723644623601bf38d20e83..f7aaaf6eeec255eccdafbe5c320a4e6115c6b996 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
@@ -40,8 +38,6 @@ class CRM_Mailing_Page_Preview extends CRM_Core_Page {
 
   /**
    * Run this page (figure out the action needed and perform it).
-   *
-   * @return void
    */
   public function run() {
 
@@ -53,7 +49,7 @@ class CRM_Mailing_Page_Preview extends CRM_Core_Page {
     $options = array();
     $session->getVars($options, "CRM_Mailing_Controller_Send_$qfKey");
 
-    //get the options if control come from search context, CRM-3711
+    // get the options if control come from search context, CRM-3711
     if (empty($options)) {
       $session->getVars($options, "CRM_Contact_Controller_Search_$qfKey");
     }
@@ -76,7 +72,7 @@ class CRM_Mailing_Page_Preview extends CRM_Core_Page {
       $mailing->id
     );
 
-    //get details of contact with token value including Custom Field Token Values.CRM-3734
+    // get details of contact with token value including Custom Field Token Values.CRM-3734
     $returnProperties = $mailing->getReturnProperties();
     $params = array('contact_id' => $session->get('userID'));
 
index 31918ec3594b174a153142a0803c9feaf6a1fa0d..c1879ac89c914d0edf1a6f7b47f69c4273b19c3f 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * Page to display / edit the header / footer of a mailing
- *
+ * Page to display / edit the header / footer of a mailing.
  */
 class CRM_Mailing_Page_Report extends CRM_Core_Page_Basic {
   public $_mailing_id;
@@ -107,10 +104,10 @@ class CRM_Mailing_Page_Report extends CRM_Core_Page_Basic {
 
     $report = CRM_Mailing_BAO_Mailing::report($this->_mailing_id);
 
-    //get contents of mailing
+    // get contents of mailing
     CRM_Mailing_BAO_Mailing::getMailingContent($report, $this);
 
-    //assign backurl
+    // assign backurl
     $context = CRM_Utils_Request::retrieve('context', 'String', $this);
     $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
 
index 3566faaf5ad29e70f430e1b6fa0125ee21c9d410..41e7d9371714206450a51544a6c339f0ee306204 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Page_Resubscribe extends CRM_Mailing_Page_Common {
   /**
index e43577d9b1e69ab3290fbb302e4d96a495dcc0d5..4c0ea40a453275edf5136ac7240032f7baaa553d 100644 (file)
@@ -29,7 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
  */
 
 /**
index 90f50d94dd37072181950d075be3853fed50a871..f16594a66ceeb14b55ca6f18187f5f53deb5b501 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Mailing_Page_Unsubscribe extends CRM_Mailing_Page_Common {
 
index 00c7c2a0cf53876bd0c76572da77264dbd72fe02..3bc78a2addc0efe1bdc80092d764f82b58a4fe77 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * a page for mailing preview
+ * A page for mailing preview.
  */
 class CRM_Mailing_Page_View extends CRM_Core_Page {
   protected $_mailingID;
@@ -43,9 +41,9 @@ class CRM_Mailing_Page_View extends CRM_Core_Page {
 
   /**
    * Lets do permission checking here.
-   * First check for valid mailing, if false return fatal
-   * Second check for visibility
-   * Call a hook to see if hook wants to override visibility setting
+   * First check for valid mailing, if false return fatal.
+   * Second check for visibility.
+   * Call a hook to see if hook wants to override visibility setting.
    */
   public function checkPermission() {
     if (!$this->_mailing) {
@@ -78,8 +76,6 @@ class CRM_Mailing_Page_View extends CRM_Core_Page {
    * @param int $contactID
    * @param bool $print
    * @param bool $allowID
-   *
-   * @return void
    */
   public function run($id = NULL, $contactID = NULL, $print = TRUE, $allowID = FALSE) {
     if (is_numeric($id)) {
@@ -144,7 +140,7 @@ class CRM_Mailing_Page_View extends CRM_Core_Page {
     // get contact detail and compose if contact id exists
     $returnProperties = $this->_mailing->getReturnProperties();
     if (isset($this->_contactID)) {
-      //get details of contact with token value including Custom Field Token Values.CRM-3734
+      // get details of contact with token value including Custom Field Token Values.CRM-3734
       $params = array('contact_id' => $this->_contactID);
       $details = CRM_Utils_Token::getTokenDetails($params,
         $returnProperties,
@@ -156,7 +152,7 @@ class CRM_Mailing_Page_View extends CRM_Core_Page {
       $contactId = $this->_contactID;
     }
     else {
-      //get tokens that are not contact specific resolved
+      // get tokens that are not contact specific resolved
       $params = array('contact_id' => 0);
       $details = CRM_Utils_Token::getAnonymousTokenDetails($params,
         $returnProperties,
index 3ff174b6a725641e952ca654ca82b89f18f6ffa6..b7ddcd9666ed0af267c1aeef046537216212dd32 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
  * This class holds all the Pseudo constants that are specific to Mass mailing. This avoids
- * polluting the core class and isolates the mass mailer class
+ * polluting the core class and isolates the mass mailer class.
  */
 class CRM_Mailing_PseudoConstant extends CRM_Core_PseudoConstant {
 
index c0110bf745250cd1127c22d9843fc17ebd4e4c0b..db6cf033b0e3af1fa043f3aabf1e5f9a7e0f865e 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
@@ -179,7 +177,7 @@ class CRM_Mailing_Selector_Browse extends CRM_Core_Selector_Base implements CRM_
   /**
    * Returns total number of rows for the query.
    *
-   * @param
+   * @param string $action
    *
    * @return int
    *   Total number of rows
@@ -189,7 +187,7 @@ class CRM_Mailing_Selector_Browse extends CRM_Core_Selector_Base implements CRM_
     $mailing = CRM_Mailing_BAO_Mailing::getTableName();
     $mailingACL = CRM_Mailing_BAO_Mailing::mailingACL();
 
-    //get the where clause.
+    // get the where clause.
     $params = array();
     $whereClause = "$mailingACL AND " . $this->whereClause($params);
 
@@ -283,7 +281,7 @@ LEFT JOIN  civicrm_contact scheduledContact ON ( $mailing.scheduled_id = schedul
     if (CRM_Mailing_Info::workflowEnabled()) {
       $allAccess = FALSE;
       $workFlow = TRUE;
-      //supercedes all permission
+      // supercedes all permission
       if (CRM_Core_Permission::check('access CiviMail')) {
         $allAccess = TRUE;
       }
@@ -314,15 +312,15 @@ LEFT JOIN  civicrm_contact scheduledContact ON ( $mailing.scheduled_id = schedul
     }
     $rows = &$mailing->getRows($offset, $rowCount, $sort, $whereClause, $params);
 
-    //get the search base mailing Ids, CRM-3711.
+    // get the search base mailing Ids, CRM-3711.
     $searchMailings = $mailing->searchMailingIDs();
 
-    //check for delete CRM-4418
+    // check for delete CRM-4418
     $allowToDelete = CRM_Core_Permission::check('delete in CiviMail');
 
     if ($output != CRM_Core_Selector_Controller::EXPORT) {
 
-      //create the appropriate $op to use for hook_civicrm_links
+      // create the appropriate $op to use for hook_civicrm_links
       $pageTypes = array('view', 'mailing', 'browse');
       if ($this->_parent->_unscheduled) {
         $pageTypes[] = 'unscheduled';
@@ -385,7 +383,7 @@ LEFT JOIN  civicrm_contact scheduledContact ON ( $mailing.scheduled_id = schedul
           }
         }
 
-        //check for delete permission.
+        // check for delete permission.
         if ($allowToDelete) {
           $actionMask |= CRM_Core_Action::DELETE;
         }
@@ -393,7 +391,7 @@ LEFT JOIN  civicrm_contact scheduledContact ON ( $mailing.scheduled_id = schedul
         if ($actionMask == NULL) {
           $actionMask = CRM_Core_Action::ADD;
         }
-        //get status strings as per locale settings CRM-4411.
+        // get status strings as per locale settings CRM-4411.
         $rows[$key]['status'] = CRM_Mailing_BAO_MailingJob::status($row['status']);
 
         $rows[$key]['action'] = CRM_Core_Action::formLink($actionLinks,
@@ -406,7 +404,7 @@ LEFT JOIN  civicrm_contact scheduledContact ON ( $mailing.scheduled_id = schedul
           $row['id']
         );
 
-        //unset($rows[$key]['id']);
+        // unset($rows[$key]['id']);
         // if the scheduled date is 0, replace it with an empty string
         if ($rows[$key]['scheduled_iso'] == '0000-00-00 00:00:00') {
           $rows[$key]['scheduled'] = '';
index d7a2e9fed0a5200e9cc607505e7dd34e5e9e53a8..a193cae610d5220d10366196c8ef0d770659ed80 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
  * This class is used to retrieve and display a range of
  * contacts that match the given criteria (specifically for
  * results of advanced search options.
- *
  */
 class CRM_Mailing_Selector_Event extends CRM_Core_Selector_Base implements CRM_Core_Selector_API {
 
@@ -257,7 +254,7 @@ class CRM_Mailing_Selector_Event extends CRM_Core_Selector_Base implements CRM_C
   /**
    * Returns total number of rows for the query.
    *
-   * @param
+   * @param string $action
    *
    * @return int
    *   Total number of rows
index 45aa4fe6b76576ed09037e7cff862da5d5766ce1..f1de4478ac49597de8959c7d2c0f8d42c6d75e2c 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
  * This class is used to retrieve and display a range of
  * contacts that match the given criteria (specifically for
  * results of advanced search options.
- *
  */
 class CRM_Mailing_Selector_Search extends CRM_Core_Selector_Base implements CRM_Core_Selector_API {
 
@@ -241,7 +238,7 @@ class CRM_Mailing_Selector_Search extends CRM_Core_Selector_Base implements CRM_
   /**
    * Returns total number of rows for the query.
    *
-   * @param
+   * @param string $action
    *
    * @return int
    *   Total number of rows
index 04c91b9dd524f24071e2d42a20671445e8dd4999..6a418ef257958d0f83d36f17cccc171d96d03715 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
  * class to represent the actions that can be performed on a group of contacts
- * used by the search forms
+ * used by the search forms.
  *
  */
 class CRM_Mailing_Task {
   /**
-   * The task array
+   * The task array.
    *
    * @var array
    */
   static $_tasks = NULL;
 
   /**
-   * The optional task array
+   * The optional task array.
    *
    * @var array
    */
@@ -55,10 +53,10 @@ class CRM_Mailing_Task {
 
   /**
    * These tasks are the core set of tasks that the user can perform
-   * on a contact / group of contacts
+   * on a contact / group of contacts.
    *
    * @return array
-   *   the set of tasks for a group of contacts
+   *   the set of tasks for a group of contacts.
    */
   public static function &tasks() {
     if (!(self::$_tasks)) {
@@ -79,10 +77,10 @@ class CRM_Mailing_Task {
 
   /**
    * These tasks are the core set of task titles
-   * on mailing recipients
+   * on mailing recipients.
    *
    * @return array
-   *   the set of task titles
+   *   the set of task titles.
    */
   public static function &taskTitles() {
     return array();
@@ -90,7 +88,7 @@ class CRM_Mailing_Task {
 
   /**
    * Show tasks selectively based on the permission level
-   * of the user
+   * of the user.
    *
    * @param int $permission
    *
@@ -104,7 +102,7 @@ class CRM_Mailing_Task {
 
   /**
    * These tasks are the core set of tasks that the user can perform.
-   * on mailing recipients
+   * on mailing recipients.
    *
    * @param int $value
    *