comment fixes
authoreileenmcnaugton <eileen@fuzion.co.nz>
Mon, 31 Aug 2015 12:31:16 +0000 (00:31 +1200)
committereileenmcnaugton <eileen@fuzion.co.nz>
Mon, 31 Aug 2015 20:05:04 +0000 (08:05 +1200)
CRM/Contact/Form/Task/SaveSearch.php
CRM/Contact/Form/Task/SaveSearch/Update.php
CRM/Contact/Form/Task/Unhold.php
CRM/Contact/Form/Task/Useradd.php
CRM/Contact/Import/Controller.php
CRM/Contact/Import/Form/DataSource.php
CRM/Contact/Import/Form/MapField.php
CRM/Contact/Import/Form/Preview.php
CRM/Contact/Import/Form/Summary.php

index 357d9a919ebd08f80b185d438185ee3bfba2adb9..cb3fd33f45eeb209356d87ddc3816ced83fff3ae 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class provides the functionality to save a search
+ * This class provides the functionality to save a search.
+ *
  * Saved Searches are used for saving frequently used queries
  */
 class CRM_Contact_Form_Task_SaveSearch extends CRM_Contact_Form_Task {
@@ -48,8 +47,6 @@ class CRM_Contact_Form_Task_SaveSearch extends CRM_Contact_Form_Task {
 
   /**
    * Build all the data structures needed to build the form.
-   *
-   * @return void
    */
   public function preProcess() {
     $this->_id = NULL;
@@ -75,12 +72,11 @@ class CRM_Contact_Form_Task_SaveSearch extends CRM_Contact_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() {
     // get the qill
@@ -147,9 +143,6 @@ class CRM_Contact_Form_Task_SaveSearch extends CRM_Contact_Form_Task {
 
   /**
    * Process the form after the input has been submitted and validated.
-   *
-   *
-   * @return void
    */
   public function postProcess() {
     // saved search form values
index 2d52a15bc015dd0006e39d1e571b2d6f604470aa..5b9583eb129fe213e17e3a87c03c882b8aa6331e 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class provides the functionality to update a saved search
- *
+ * This class provides the functionality to update a saved search.
  */
 class CRM_Contact_Form_Task_SaveSearch_Update extends CRM_Contact_Form_Task_SaveSearch {
 
   /**
    * Build all the data structures needed to build the form.
-   *
-   * @return void
    */
   public function preProcess() {
     parent::preProcess();
@@ -59,10 +54,6 @@ class CRM_Contact_Form_Task_SaveSearch_Update extends CRM_Contact_Form_Task_Save
 
   /**
    * Set default values for the form.
-   * the default values are retrieved from the database
-   *
-   *
-   * @return void
    */
   public function setDefaultValues() {
 
index 61ee1fed842b00ce4fe24aa91d25b358b7fdd3d2..e9ee12d71130ba8bd4431cff2dd6bf8a2ac660fb 100644 (file)
@@ -7,8 +7,6 @@ class CRM_Contact_Form_Task_Unhold extends CRM_Contact_Form_Task {
 
   /**
    * Set variables up before form is built.
-   *
-   * @return void
    */
   public function preProcess() {
     parent::preProcess();
index 837b8c72fbc4a1d0f8037fa24707575dfe138078..60e71357f74fbc7247eaa0cc7ee9f6e59fd70f3a 100755 (executable)
@@ -26,8 +26,7 @@
  */
 
 /**
- * This class generates form components generic to useradd
- *
+ * This class generates form components generic to useradd.
  */
 class CRM_Contact_Form_Task_Useradd extends CRM_Core_Form {
 
@@ -64,11 +63,7 @@ class CRM_Contact_Form_Task_Useradd extends CRM_Core_Form {
   }
 
   /**
-   * Set default values for the form. Note that in edit/view mode
-   * the default values are retrieved from the database
-   *
-   *
-   * @return void
+   * Set default values for the form.
    */
   public function setDefaultValues() {
     $defaults = array();
@@ -83,8 +78,6 @@ class CRM_Contact_Form_Task_Useradd extends CRM_Core_Form {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     $element = $this->add('text', 'name', ts('Full Name'), array('class' => 'huge'));
@@ -118,8 +111,7 @@ class CRM_Contact_Form_Task_Useradd extends CRM_Core_Form {
   }
 
   /**
-   *
-   * @return void
+   * Post process function.
    */
   public function postProcess() {
     // store the submitted values in an array
@@ -131,7 +123,6 @@ class CRM_Contact_Form_Task_Useradd extends CRM_Core_Form {
 
   /**
    * Validation Rule.
-   *
    */
   public static function usernameRule($params) {
     $config = CRM_Core_Config::singleton();
index 6f78b677d97d2d5d5a5e6a693fe1d4bf15a0e5ac..d2a661f21f5f277613883a7ffd13d3cebb70cecc 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Contact_Import_Controller extends CRM_Core_Controller {
 
index ca38d0a47ec6b400cad76fb16ce09012cd003764..65c8cab55fe472f794fe890b6d2951d8fe071687 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class delegates to the chosen DataSource to grab the data to be
- *  imported.
+ * This class delegates to the chosen DataSource to grab the data to be imported.
  */
 class CRM_Contact_Import_Form_DataSource extends CRM_Core_Form {
 
@@ -49,8 +46,6 @@ class CRM_Contact_Import_Form_DataSource extends CRM_Core_Form {
 
   /**
    * Set variables up before form is built.
-   *
-   * @return void
    */
   public function preProcess() {
 
@@ -128,8 +123,6 @@ class CRM_Contact_Import_Form_DataSource extends CRM_Core_Form {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
 
@@ -295,10 +288,7 @@ class CRM_Contact_Import_Form_DataSource extends CRM_Core_Form {
   }
 
   /**
-   * Call the DataSource's postProcess method to take over
-   * and then setup some common data structures for the next step
-   *
-   * @return void
+   * Call the DataSource's postProcess method.
    */
   public function postProcess() {
     $this->controller->resetPage('MapField');
index 88b7c535a5738ee5d5b52c05ef715811efa0e7e3..2b14e69d429fd0c2ff25ce2d9b51bd23aa7951c0 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_Contact_Import_Form_MapField extends CRM_Import_Form_MapField {
 
@@ -92,8 +90,6 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField {
 
   /**
    * Set variables up before form is built.
-   *
-   * @return void
    */
   public function preProcess() {
     $dataSource = $this->get('dataSource');
@@ -200,8 +196,6 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     //to save the current mappings
@@ -660,10 +654,7 @@ class CRM_Contact_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.
    */
   public function postProcess() {
     $params = $this->controller->exportValues('MapField');
@@ -984,11 +975,12 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField {
 
   /**
    * Format custom field name.
-   * combine group and field name to avoid conflict.
    *
-   * @param $fields
+   * Combine group and field name to avoid conflict.
    *
-   * @return void
+   * @param array $fields
+   *
+   * @return array
    */
   public function formatCustomFieldName(&$fields) {
     //CRM-2676, replacing the conflict for same custom field name from different custom group.
index 5337e678e8cdabba0d27cb03c151dd97a0497838..714f8c33f201a9f3293a232ad0fc0e96cdbb0487 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_Contact_Import_Form_Preview extends CRM_Import_Form_Preview {
 
   /**
    * Set variables up before form is built.
-   *
-   * @return void
    */
   public function preProcess() {
     //get the data from the session
@@ -137,8 +132,6 @@ class CRM_Contact_Import_Form_Preview extends CRM_Import_Form_Preview {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     $this->addElement('text', 'newGroupName', ts('Name for new group'));
@@ -250,10 +243,7 @@ class CRM_Contact_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.
    */
   public function postProcess() {
 
@@ -343,10 +333,7 @@ class CRM_Contact_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.
    */
   public function postProcessOld() {
 
index 565b536d6d4b1197ae5c6c3613d61e5cd8198404..c326ac76cdc4218debb71f2e25b8e22d58df2e10 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_Contact_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
@@ -125,8 +121,6 @@ class CRM_Contact_Import_Form_Summary extends CRM_Import_Form_Summary {
 
   /**
    * Clean up the import table we used.
-   *
-   * @return void
    */
   public function postProcess() {
     $dao = new CRM_Core_DAO();