comment fixes
authoreileenmcnaugton <eileen@fuzion.co.nz>
Mon, 31 Aug 2015 12:31:59 +0000 (00:31 +1200)
committereileenmcnaugton <eileen@fuzion.co.nz>
Tue, 1 Sep 2015 03:06:19 +0000 (15:06 +1200)
CRM/Contact/Import/ImportJob.php
CRM/Contact/Import/Importer.php
CRM/Contact/Import/Page/AJAX.php
CRM/Contact/Import/Parser.php
CRM/Contact/Import/Parser/Contact.php
CRM/Contact/Page/CustomSearch.php
CRM/Contact/Page/DashBoard.php
CRM/Contact/Page/Dashlet.php
CRM/Contact/Page/DedupeException.php

index c9696e94b7d428bac6ddb35104ce28c753e93f0a..d1b9efdbe4976b31a1b1091e5e79c730e876a32e 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class acts like a psuedo-BAO for transient import job tables
+ * This class acts like a psuedo-BAO for transient import job tables.
  */
 class CRM_Contact_Import_ImportJob {
 
index 3ec69f117b0cce8a58c03a74b38621f7452c5cf0..90088f6be26e4a5da9e579c58cbe92baee419fc8 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
index d8ee4c0d32369dd05522544929166d66adec4dea..50ac2f340bc6c4441d04179d1fbe7671b494e285 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class contains all the function that are called using AJAX
+ * This class contains all the function that are called using AJAX.
  */
 class CRM_Contact_Import_Page_AJAX {
 
index 2550ec9bc9a159b41531db55865ed6f8162fc1bc..ba3a50865e98bd48ef24b3a2c8711fb4cfeac5ff 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 abstract class CRM_Contact_Import_Parser extends CRM_Import_Parser {
 
@@ -455,8 +453,6 @@ abstract class CRM_Contact_Import_Parser extends CRM_Import_Parser {
    *
    * @param array $elements
    *   IM service provider type ids.
-   *
-   * @return void
    */
   public function setActiveFieldImProviders($elements) {
     for ($i = 0; $i < count($elements); $i++) {
@@ -523,8 +519,6 @@ abstract class CRM_Contact_Import_Parser extends CRM_Import_Parser {
    *
    * @param array $elements
    *   IM service provider type ids of related contact.
-   *
-   * @return void
    */
   public function setActiveFieldRelatedContactImProvider($elements) {
     for ($i = 0; $i < count($elements); $i++) {
@@ -667,8 +661,6 @@ abstract class CRM_Contact_Import_Parser extends CRM_Import_Parser {
    * @param CRM_Core_Session $store
    *
    * @param int $mode
-   *
-   * @return void
    */
   public function set($store, $mode = self::MODE_SUMMARY) {
     $store->set('rowCount', $this->_rowCount);
@@ -731,9 +723,7 @@ abstract class CRM_Contact_Import_Parser extends CRM_Import_Parser {
    * @param string $fileName
    * @param array $header
    * @param array $data
-   *
-   * @return void
-   */
+    */
   public static function exportCSV($fileName, $header, $data) {
 
     if (file_exists($fileName) && !is_writable($fileName)) {
@@ -778,8 +768,6 @@ abstract class CRM_Contact_Import_Parser extends CRM_Import_Parser {
    *
    * @param int $id
    * @param array $params
-   *
-   * @return void
    */
   public function updateImportRecord($id, &$params) {
     $statusFieldName = $this->_statusFieldName;
index 2a7a90f30a7af0e1c5b46f3f8612e6f8831abd35..4cc793b54923761382ff5ca044836da43fd62655 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 //@todo calling api functions directly is not supported
@@ -125,8 +123,6 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Contact_Import_Parser {
 
   /**
    * The initializer code, called before the processing
-   *
-   * @return void
    */
   public function init() {
     $contactFields = CRM_Contact_BAO_Contact::importableFields($this->_contactType);
@@ -1091,9 +1087,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Contact_Import_Parser {
   }
 
   /**
-   * The initializer code, called before the processing
-   *
-   * @return void
+   * The initializer code, called before the processing.
    */
   public function fini() {
   }
index 64a39ae464566295e818b682de0465e75d70e5b0..c0c7499ef568ab6821a1566f1e0deafc828c89d7 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
  * Main page for viewing all Saved searches.
- *
  */
 class CRM_Contact_Page_CustomSearch extends CRM_Core_Page {
 
@@ -89,8 +86,6 @@ ORDER By  v.weight
 
   /**
    * Run this page (figure out the action needed and perform it).
-   *
-   * @return void
    */
   public function run() {
     $action = CRM_Utils_Request::retrieve('action',
index ed97dbc589d6d7a9d5f9ac15069bcfa3565792a7..3e50cd5cfe8f301841d40d4212537d14cdcf3c62 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * CiviCRM Dashboard
- *
+ * CiviCRM Dashboard.
  */
 class CRM_Contact_Page_DashBoard extends CRM_Core_Page {
 
   /**
    * Run dashboard.
-   *
-   * @return void
    */
   public function run() {
     // Add dashboard js and css
index deae061a2bfe9687b6544b58d0f2ec2275cd9703..721e0559cd8d1f2865c46912cd54029d49bacaa1 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * CiviCRM Dashlet
- *
+ * CiviCRM Dashlet.
  */
 class CRM_Contact_Page_Dashlet extends CRM_Core_Page {
 
   /**
    * Run dashboard.
-   *
-   * @return void
    */
   public function run() {
     CRM_Utils_System::setTitle(ts('Dashlets'));
index ea75e24af57d7709ddcbc57c98f62e55832b7465..3ce43ca50b7c993e4d7f2763d775156a8c6b5a9d 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
  * Main page for viewing contact.
- *
  */
 class CRM_Contact_Page_DedupeException 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() {
     //fetch the dedupe exception contacts.