comment fixes
authoreileenmcnaugton <eileen@fuzion.co.nz>
Wed, 2 Sep 2015 12:45:16 +0000 (00:45 +1200)
committereileenmcnaugton <eileen@fuzion.co.nz>
Wed, 2 Sep 2015 12:45:50 +0000 (00:45 +1200)
31 files changed:
CRM/Contribute/Form/Task/PickProfile.php
CRM/Contribute/Form/Task/Print.php
CRM/Contribute/Form/Task/Result.php
CRM/Contribute/Form/Task/SearchTaskHookSample.php
CRM/Contribute/Form/Task/Status.php
CRM/Contribute/Form/UpdateBilling.php
CRM/Contribute/Form/UpdateSubscription.php
CRM/Contribute/Import/Controller.php
CRM/Contribute/Import/Field.php
CRM/Contribute/Import/Form/DataSource.php
CRM/Contribute/Import/Form/MapField.php
CRM/Contribute/Import/Form/Preview.php
CRM/Contribute/Import/Form/Summary.php
CRM/Contribute/Import/Parser.php
CRM/Contribute/Import/Parser/Contribution.php
CRM/Contribute/Info.php
CRM/Contribute/Page/ContributionPage.php
CRM/Contribute/Page/ContributionRecur.php
CRM/Contribute/Page/DashBoard.php
CRM/Contribute/Page/ManagePremiums.php
CRM/Contribute/Page/PaymentInfo.php
CRM/Contribute/Page/Premium.php
CRM/Contribute/Page/SubscriptionStatus.php
CRM/Contribute/Page/Tab.php
CRM/Contribute/Page/UserDashboard.php
CRM/Contribute/PseudoConstant.php
CRM/Contribute/Selector/Search.php
CRM/Contribute/StateMachine/Contribution.php
CRM/Contribute/StateMachine/ContributionPage.php
CRM/Contribute/StateMachine/Search.php
CRM/Contribute/Task.php

index 2e2f03d62687883e033e208d63d6bc47a16ab2bb..97e364987fe3719f9fb99f2745ffc34642db0646 100644 (file)
@@ -82,9 +82,6 @@ class CRM_Contribute_Form_Task_PickProfile extends CRM_Contribute_Form_Task {
 
   /**
    * Build the form object.
-   *
-   *
-   * @return void
    */
   public function buildQuickForm() {
 
@@ -106,9 +103,6 @@ class CRM_Contribute_Form_Task_PickProfile extends CRM_Contribute_Form_Task {
 
   /**
    * Add local and global form rules.
-   *
-   *
-   * @return void
    */
   public function addRules() {
     $this->addFormRule(array('CRM_Contribute_Form_Task_PickProfile', 'formRule'));
@@ -129,9 +123,6 @@ class CRM_Contribute_Form_Task_PickProfile extends CRM_Contribute_Form_Task {
 
   /**
    * Process the form after the input has been submitted and validated.
-   *
-   *
-   * @return void
    */
   public function postProcess() {
     $params = $this->exportValues();
index c0f522057e5247190bd6179259bf1ada01446870..967f3c3f32846fd4be7c3abb5623cfb133cfabe5 100644 (file)
@@ -38,8 +38,6 @@ class CRM_Contribute_Form_Task_Print extends CRM_Contribute_Form_Task {
 
   /**
    * Build all the data structures needed to build the form.
-   *
-   * @return void
    */
   public function preProcess() {
     parent::preprocess();
@@ -64,16 +62,15 @@ class CRM_Contribute_Form_Task_Print extends CRM_Contribute_Form_Task {
   }
 
   /**
-   * Build the form object - it consists of
+   * Build the form object.
+   *
+   * It consists of
    *    - displaying the QILL (query in local language)
    *    - displaying elements for saving the search
-   *
-   *
-   * @return void
    */
   public function buildQuickForm() {
     //
-    // just need to add a javacript to popup the window for printing
+    // just need to add a javascript to popup the window for printing
     //
     $this->addButtons(array(
         array(
@@ -92,9 +89,6 @@ class CRM_Contribute_Form_Task_Print extends CRM_Contribute_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 53b954cd91cba883eda40326e8b756bba7d14548..903ae3658db33a04e75195c423ab8c94f00f9195 100644 (file)
@@ -38,8 +38,6 @@ class CRM_Contribute_Form_Task_Result extends CRM_Contribute_Form_Task {
 
   /**
    * Build all the data structures needed to build the form.
-   *
-   * @return void
    */
   public function preProcess() {
   }
index 89f59f59c1988f0219f390caae93bcb49bfec531..e455e784d2c04044a29beb28125afbb87676f757 100644 (file)
@@ -39,8 +39,6 @@ class CRM_Contribute_Form_Task_SearchTaskHookSample extends CRM_Contribute_Form_
 
   /**
    * Build all the data structures needed to build the form.
-   *
-   * @return void
    */
   public function preProcess() {
     parent::preProcess();
@@ -74,8 +72,6 @@ INNER JOIN civicrm_contact ct ON ( co.contact_id = ct.id )
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     $this->addButtons(array(
index b5879ba2b84f49db4d423a30e7bd8728a86af246..2a645f3840427afcefe533b874f9cc38ab13dcc0 100644 (file)
@@ -32,8 +32,7 @@
  */
 
 /**
- * This class provides the functionality to email a group of
- * contacts.
+ * This class provides the functionality to email a group of contacts.
  */
 class CRM_Contribute_Form_Task_Status extends CRM_Contribute_Form_Task {
 
@@ -49,8 +48,6 @@ class CRM_Contribute_Form_Task_Status extends CRM_Contribute_Form_Task {
 
   /**
    * Build all the data structures needed to build the form.
-   *
-   * @return void
    */
   public function preProcess() {
     $id = CRM_Utils_Request::retrieve('id', 'Positive',
@@ -87,9 +84,6 @@ AND    {$this->_componentClause}";
 
   /**
    * Build the form object.
-   *
-   *
-   * @return void
    */
   public function buildQuickForm() {
     $status = CRM_Contribute_PseudoConstant::contributionStatus();
@@ -212,9 +206,6 @@ AND    co.id IN ( $contribIDs )";
 
   /**
    * Process the form after the input has been submitted and validated.
-   *
-   *
-   * @return void
    */
   public function postProcess() {
     $params = $this->controller->exportValues($this->_name);
index bd7f21759bf7c87d7f7ad3f18b44823e05582866..38b3199221ea022cc3aa740dae75a46930437a65 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class generates form components for processing a contribution
- *
+ * This class generates form components for processing a contribution.
  */
 class CRM_Contribute_Form_UpdateBilling extends CRM_Core_Form {
   protected $_crid = NULL;
@@ -57,8 +54,6 @@ class CRM_Contribute_Form_UpdateBilling extends CRM_Core_Form {
 
   /**
    * Set variables up before form is built.
-   *
-   * @return void
    */
   public function preProcess() {
     $this->_mid = CRM_Utils_Request::retrieve('mid', 'Integer', $this, FALSE);
@@ -185,8 +180,6 @@ class CRM_Contribute_Form_UpdateBilling extends CRM_Core_Form {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     $type = 'next';
@@ -236,8 +229,6 @@ class CRM_Contribute_Form_UpdateBilling extends CRM_Core_Form {
 
   /**
    * Process the form.
-   *
-   * @return void
    */
   public function postProcess() {
     $params = $this->controller->exportValues($this->_name);
index 9b15174a467a6efc9584a2b927c6029346d74fe1..6d926ccf2d133c0d84b30433d5d6e280abe9087d 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
@@ -39,7 +37,6 @@
  * It delegates the work to lower level subclasses and integrates the changes
  * back in. It also uses a lot of functionality with the CRM API's, so any change
  * made here could potentially affect the API etc. Be careful, be aware, use unit tests.
- *
  */
 class CRM_Contribute_Form_UpdateSubscription extends CRM_Core_Form {
 
@@ -126,11 +123,9 @@ class CRM_Contribute_Form_UpdateSubscription extends CRM_Core_Form {
   }
 
   /**
-   * Set default values for the form. Note that in edit/view mode
-   * the default values are retrieved from the database
-   *
+   * Set default values for the form.
    *
-   * @return void
+   * Note that in edit/view mode the default values are retrieved from the database.
    */
   public function setDefaultValues() {
 
@@ -144,8 +139,6 @@ class CRM_Contribute_Form_UpdateSubscription extends CRM_Core_Form {
 
   /**
    * Actually build the components of the form.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     // CRM-16398: If current recurring contribution got > 1 lineitems then make amount field readonly
@@ -185,10 +178,7 @@ class CRM_Contribute_Form_UpdateSubscription extends CRM_Core_Form {
   }
 
   /**
-   * called after the user submits the form.
-   *
-   *
-   * @return void
+   * Called after the user submits the form.
    */
   public function postProcess() {
     // store the submitted values in an array
index d13a6f6360bb14f7d0e9a69cdc54d052d4f51ce8..2e2f9ae042a48f06862d870cf16d90f494c8c74f 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Contribute_Import_Controller extends CRM_Core_Controller {
 
   /**
    * Class constructor.
    *
-   * @param null $title
+   * @param string $title
    * @param bool|int $action
    * @param bool $modal
    */
index 8b5dc0b1568da5300b4f944f81580c54b1995873..6aaf46ad36bd9cbe677b8c950cae999e04f91d38 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Contribute_Import_Field {
 
index 38eafea32028ad9b70da7a6e5ae88966548ecaaf..009ea1b259da1138bc72be98b03f927fc6b6a7d1 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
@@ -44,8 +42,6 @@ class CRM_Contribute_Import_Form_DataSource extends CRM_Import_Form_DataSource {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     parent::buildQuickForm();
@@ -70,8 +66,6 @@ class CRM_Contribute_Import_Form_DataSource extends CRM_Import_Form_DataSource {
 
   /**
    * Process the uploaded file.
-   *
-   * @return void
    */
   public function postProcess() {
     $this->storeFormValues(array(
index de43b70f5f2f7ec3d274922b6c0e66802d523c0d..d8ca305e0a386c6b2d8f94712cfab6fd31b54c36 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class gets the name of the file to upload
+ * This class gets the name of the file to upload.
  */
 class CRM_Contribute_Import_Form_MapField extends CRM_Import_Form_MapField {
 
 
   /**
    * Set variables up before form is built.
-   *
-   * @return void
    */
   public function preProcess() {
     $this->_mapperFields = $this->get('fields');
@@ -107,8 +103,6 @@ class CRM_Contribute_Import_Form_MapField extends CRM_Import_Form_MapField {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     //to save the current mappings
@@ -475,10 +469,7 @@ class CRM_Contribute_Import_Form_MapField extends CRM_Import_Form_MapField {
   }
 
   /**
-   * Process the mapped fields and map it into the uploaded file
-   * preview the file and extract some summary statistics
-   *
-   * @return void
+   * Process the mapped fields and map it into the uploaded file preview the file and extract some summary statistics.
    */
   public function postProcess() {
     $params = $this->controller->exportValues('MapField');
index 22ed33b111f66c26dba7bd68bdc7ddada2f1dfda..a0317e44fc6675d27212180483e45d44687bacec 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class previews the uploaded file and returns summary
- * statistics
+ * This class previews the uploaded file and returns summary statistics.
  */
 class CRM_Contribute_Import_Form_Preview extends CRM_Import_Form_Preview {
 
   /**
    * Set variables up before form is built.
-   *
-   * @return void
    */
   public function preProcess() {
     $skipColumnHeader = $this->controller->exportValue('DataSource', 'skipColumnHeader');
@@ -110,10 +105,7 @@ class CRM_Contribute_Import_Form_Preview extends CRM_Import_Form_Preview {
   }
 
   /**
-   * Process the mapped fields and map it into the uploaded file
-   * preview the file and extract some summary statistics
-   *
-   * @return void
+   * Process the mapped fields and map it into the uploaded file preview the file and extract some summary statistics.
    */
   public function postProcess() {
     $fileName = $this->controller->exportValue('DataSource', 'uploadFile');
index 658fd80d9c290b788fa05debfdf1eccbc445ec10..4c05bf95d3bec760284b94d44d134f18f8e080ba 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class summarizes the import results
+ * This class summarizes the import results.
  */
 class CRM_Contribute_Import_Form_Summary extends CRM_Import_Form_Summary {
 
   /**
    * Set variables up before form is built.
-   *
-   * @return void
    */
   public function preProcess() {
     // set the error message path to display
index 610198af5a963ee99e3c2e03f621e4f9845a3c96..ba7be327fe24a04559afbf130562db205460f56a 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 abstract class CRM_Contribute_Import_Parser extends CRM_Import_Parser {
 
@@ -408,8 +406,6 @@ abstract class CRM_Contribute_Import_Parser extends CRM_Import_Parser {
    * set the active fields array to this list
    *
    * @param array $fieldKeys mapped array of values
-   *
-   * @return void
    */
   public function setActiveFields($fieldKeys) {
     $this->_activeFieldCount = count($fieldKeys);
@@ -567,8 +563,6 @@ abstract class CRM_Contribute_Import_Parser extends CRM_Import_Parser {
    * @param string $fileName
    * @param array $header
    * @param array $data
-   *
-   * @return void
    */
   public static function exportCSV($fileName, $header, $data) {
     $output = array();
index 7901e21234f7da58d57842374ee91af31fd9a71d..aec76b5eea68fe6afaafd8ec600a744e74c08192 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
@@ -71,8 +69,6 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Contribute_Import_Pa
 
   /**
    * The initializer code, called before the processing
-   *
-   * @return void
    */
   public function init() {
     $fields = CRM_Contribute_BAO_Contribution::importableFields($this->_contactType, FALSE);
@@ -611,9 +607,7 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Contribute_Import_Pa
   }
 
   /**
-   * The initializer code, called before the processing
-   *
-   * @return void
+   * The initializer code, called before the processing.
    */
   public function fini() {
   }
index 79a81ce90a6ca408a62590867974ea46a229929c..af448dcaa5d898063db46db40e7bcd5d07cf3e19 100644 (file)
@@ -32,8 +32,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Contribute_Info extends CRM_Core_Component_Info {
 
index 18eb4665ca6d6ec89392c5363699ee90b4aa7d61..d7d456cf5b501dad21b485df9e7807bee132f9e3 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
@@ -372,10 +370,7 @@ AND         cp.page_type = 'contribute'
   }
 
   /**
-   * make a copy of a contribution page, including
-   * all the fields in the page
-   *
-   * @return void
+   * Make a copy of a contribution page, including all the fields in the page.
    */
   public function copy() {
     $gid = CRM_Utils_Request::retrieve('gid', 'Positive',
index 15ea51158b00d927b0ba1b9379a9c98b6aa8d502..132b03bb4cbf35e0b8a3e65933fcf4b3de33cfd6 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
  * Main page for viewing Recurring Contributions.
- *
  */
 class CRM_Contribute_Page_ContributionRecur extends CRM_Core_Page {
 
@@ -45,8 +42,6 @@ class CRM_Contribute_Page_ContributionRecur extends CRM_Core_Page {
 
   /**
    * View details of a recurring contribution.
-   *
-   * @return void
    */
   public function view() {
     $recur = new CRM_Contribute_DAO_ContributionRecur();
index 6916a7d0dcf20a8082ffae14d1438030d0e5b2ef..03a45021d9f39172826245c37e5933b4d98242a7 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * Page for displaying list of Payment-Instrument
+ * Page for displaying list of Payment-Instrument.
  */
 class CRM_Contribute_Page_DashBoard 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.
+   * Heart of the viewing process.
    *
-   * @return void
+   * The runner gets all the meta data for the contact and calls the appropriate type of page to view.
    */
   public function preProcess() {
     CRM_Utils_System::setTitle(ts('CiviContribute'));
index a7fd59b4afe116bd15e586dd8e294d5cc9dab33e..3483d36c749f8e1a8fa7c117a77fc8d43cdd1c4e 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * Page for displaying list of Premiums
+ * Page for displaying list of Premiums.
  */
 class CRM_Contribute_Page_ManagePremiums extends CRM_Core_Page_Basic {
 
@@ -105,8 +103,6 @@ class CRM_Contribute_Page_ManagePremiums extends CRM_Core_Page_Basic {
    * This method is called after the page is created. It checks for the
    * type of action and executes that action.
    * Finally it calls the parent's run method.
-   *
-   * @return void
    */
   public function run() {
 
@@ -135,9 +131,6 @@ class CRM_Contribute_Page_ManagePremiums extends CRM_Core_Page_Basic {
 
   /**
    * Browse all custom data groups.
-   *
-   *
-   * @return void
    */
   public function browse() {
     // get all custom groups sorted by weight
index e54b460da84db5d02e67cc3fd3ce7794fc2eb468..016d4a89d5cf5fc058c7d4b360caad2894b18f5c 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Contribute_Page_PaymentInfo extends CRM_Core_Page {
   public function preProcess() {
index 0cbbae0e34c89014ba3ecf0e39aa3c4ede48da69..22f2e16aa9d11cb79c52014f661a5a01df251f58 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * Page for displaying list of Premiums
+ * Page for displaying list of Premiums.
  */
 class CRM_Contribute_Page_Premium extends CRM_Core_Page_Basic {
 
@@ -97,8 +95,6 @@ class CRM_Contribute_Page_Premium extends CRM_Core_Page_Basic {
    * This method is called after the page is created. It checks for the
    * type of action and executes that action.
    * Finally it calls the parent's run method.
-   *
-   * @return void
    */
   public function run() {
     // get the requested action
@@ -126,7 +122,7 @@ class CRM_Contribute_Page_Premium extends CRM_Core_Page_Basic {
   }
 
   /**
-   * @return void
+   * Browse function.
    */
   public function browse() {
     // get all custom groups sorted by weight
index 3cb975cb02d2bbaf7505a869d4fa7058235669e9..834d9d64d536bba88249a7df6b8e7ec757a2918f 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Contribute_Page_SubscriptionStatus extends CRM_Core_Page {
 
index edfd420397f1f3d6e8d38306189ef52b3402906a..2469e4e8b1402e83e4aa78313ff7997fb60c3279 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Contribute_Page_Tab extends CRM_Core_Page {
 
index d17a579416805cc180ac333c80d439ad6e19ca35..2e16e0b1dd6ef469d4ac400f68c64aa0cd16cf3b 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Contribute_Page_UserDashboard extends CRM_Contact_Page_View_UserDashBoard {
 
index 547d85370cf768d41df66f16983f39044c03ffd5..975be0c6d772dc8d8870ea6928d5595300e0ad2f 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class holds all the Pseudo constants that are specific to Contributions. This avoids
- * polluting the core class and isolates the mass mailer class
+ * This class holds all the Pseudo constants that are specific to Contributions.
+ *
+ * This avoids polluting the core class and isolates the mass mailer class.
  */
 class CRM_Contribute_PseudoConstant extends CRM_Core_PseudoConstant {
 
index aba145eaff211e8369ab09ad0454cc40d9af5314..32d153ebb2ced809d573b7fbffdfe0845fc59bbd 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
index c4508871f9f7e670b2017d6a38aa3fb8370cdba7..086846f728344b9720c86224f3bcbeb9e3d4c25c 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
index d5f645a952bdad1fc11f606ae4c84a8c23080ea6..063f390d2224cbb2293bbc11c140527cbf3c562c 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
  * State machine for managing different states of the Import process.
- *
  */
 class CRM_Contribute_StateMachine_ContributionPage extends CRM_Core_StateMachine {
 
index 40e08b492fd4becc367e66e9bca230444f0a543a..2480d432a5ffd41728799fbdab28401b470ed247 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Contribute_StateMachine_Search extends CRM_Core_StateMachine {
 
index 52bd8c2bf25d027b9e9fe119a56a77e49c256f24..b48240fc85111d14cbed2af464fbe742d6f09b53 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
+ * Class to represent the actions that can be performed on a group of contacts.
  *
+ * Used by the search forms.
  */
 class CRM_Contribute_Task {
   const DELETE_CONTRIBUTIONS = 1, PRINT_CONTRIBUTIONS = 2, EXPORT_CONTRIBUTIONS = 3, BATCH_CONTRIBUTIONS = 4, EMAIL_CONTACTS = 5, UPDATE_STATUS = 6, PDF_RECEIPT = 7;