a few mor fixes
authorEileen McNaughton <eileen@fuzion.co.nz>
Thu, 15 Jan 2015 06:46:19 +0000 (19:46 +1300)
committerEileen McNaughton <eileen@fuzion.co.nz>
Thu, 15 Jan 2015 06:46:19 +0000 (19:46 +1300)
12 files changed:
CRM/Activity/BAO/Activity.php
CRM/Admin/Form/Setting.php
CRM/Contact/Form/Edit/Phone.php
CRM/Contact/Form/RelatedContact.php
CRM/Contact/Form/Task.php
CRM/Contact/Selector/Custom.php
CRM/Core/Controller/Simple.php
CRM/Core/QuickForm/Action/Upload.php
CRM/Dedupe/BAO/QueryBuilder/IndividualSupervised.php
CRM/Event/Form/Task/Email.php
CRM/Pledge/Selector/Search.php
CRM/SMS/Form/Provider.php

index 11fc17586b80dca9068c3001b514a9b3dd51345c..0c65ba6c76819ad1f631a0b81f3931d1f86ea22e 100644 (file)
@@ -67,7 +67,7 @@ class CRM_Activity_BAO_Activity extends CRM_Activity_DAO_Activity {
   }
 
   /**
-   * Fetch object based on array of properties
+   * Fetch object based on array of properties.
    *
    * @param array $params
    *   (reference ) an assoc array of name/value pairs.
@@ -137,12 +137,12 @@ class CRM_Activity_BAO_Activity extends CRM_Activity_DAO_Activity {
   }
 
   /**
-   * Delete the activity
+   * Delete the activity.
    *
    * @param array $params
    * @param bool $moveToTrash
    *
-   * @return void
+   * @return mixed
    */
   public static function deleteActivity(&$params, $moveToTrash = FALSE) {
     // CRM-9137
@@ -243,7 +243,7 @@ class CRM_Activity_BAO_Activity extends CRM_Activity_DAO_Activity {
   }
 
   /**
-   * Delete activity assignment record
+   * Delete activity assignment record.
    *
    * @param int $activityId
    * @param int $recordTypeID
@@ -258,7 +258,7 @@ class CRM_Activity_BAO_Activity extends CRM_Activity_DAO_Activity {
   }
 
   /**
-   * Process the activities
+   * Process the activities.
    *
    * @param array $params
    *   Associated array of the submitted values.
index 517a9963cc746cf589b5a9bd618e69b62ab65b14..6ab1d92e4646ac022b885414f83c47ebd9e34182 100644 (file)
@@ -85,10 +85,10 @@ class CRM_Admin_Form_Setting extends CRM_Core_Form {
 
       //Set defaults for autocomplete and contact reference options
       $this->_defaults['autocompleteContactSearch'] = array(
-          '1' => 1
+          '1' => 1,
         ) + $autoSearchFields;
       $this->_defaults['autocompleteContactReference'] = array(
-          '1' => 1
+          '1' => 1,
         ) + $cRSearchFields;
 
       // we can handle all the ones defined in the metadata here. Others to be converted
index 28b44f071d163060fc2aa64913684fd35e255e12..dd50d6c221cdaa896eb67072b2d5e2f1985aac57 100644 (file)
@@ -62,7 +62,7 @@ class CRM_Contact_Form_Edit_Phone {
     $form->addSelect("phone[$blockId][phone_type_id]", array(
         'entity' => 'phone',
         'class' => 'eight',
-        'placeholder' => NULL
+        'placeholder' => NULL,
       ));
 
     //main phone number with crm_phone class
@@ -75,7 +75,7 @@ class CRM_Contact_Form_Edit_Phone {
       $form->addSelect("phone[$blockId][location_type_id]", array(
           'entity' => 'phone',
           'class' => 'eight',
-          'placeholder' => NULL
+          'placeholder' => NULL,
         ));
 
       //is_Primary radio
index e3543b6538a6954d04db8a851027e8c000de6bf4..3ba4ceee78da0af5f6b215f95042aa89cd0ad8a0 100644 (file)
@@ -149,9 +149,6 @@ class CRM_Contact_Form_RelatedContact extends CRM_Core_Form {
 
   /**
    * Form submission of new/edit contact is processed.
-   *
-   *
-   * @return void
    */
   public function postProcess() {
     // store the submitted values in an array
index 7321c95e72418f0b985249bd7ce80469015fcc1c..7bce1b4c08a755a452695be2c74e19fc2cad9685 100644 (file)
@@ -85,15 +85,15 @@ class CRM_Contact_Form_Task extends CRM_Core_Form {
   static protected $_searchFormValues;
 
   /**
-   * Build all the data structures needed to build the form
-   *
-   * @param object $this
+   * Build all the data structures needed to build the form.
    */
   public function preProcess() {
     self::preProcessCommon($this);
   }
 
   /**
+   * Common pre-processing function.
+   *
    * @param CRM_Core_Form $form
    * @param bool $useTable
    */
@@ -272,8 +272,9 @@ class CRM_Contact_Form_Task extends CRM_Core_Form {
   }
 
   /**
-   * Get the contact id for custom search
-   * we are not using prev/next table incase of custom search
+   * Get the contact id for custom search.
+   *
+   * we are not using prev/next table in case of custom search
    */
   public function getContactIds() {
     // need to perform action on all contacts
index 16f033c448cb340256f23daf36a2f4d47c2cb93c..54a0f1132a8c89dd2ff31194b1b1582723a94bc1 100644 (file)
@@ -260,7 +260,7 @@ class CRM_Contact_Selector_Custom extends CRM_Contact_Selector {
   }
 
   /**
-   * Returns all the rows in the given offset and rowCount
+   * Returns all the rows in the given offset and rowCount.
    *
    * @param string $action
    *   The action being performed.
@@ -370,11 +370,9 @@ class CRM_Contact_Selector_Custom extends CRM_Contact_Selector {
   }
 
   /**
-   * Given the current formValues, gets the query in local
-   * language
+   * Given the current formValues, gets the query in local language.
    *
-   * @param array (
-   * reference)   $formValues   submitted formValues
+   * @param array $formValues   submitted formValues
    *
    * @return array
    *   which contains an array of strings
index 332cf17268336507a635604224408cb45c314c61..f27d31c05ce30e1dadae3b5cda0cee9c5385fdc3 100644 (file)
@@ -53,7 +53,7 @@ class CRM_Core_Controller_Simple extends CRM_Core_Controller {
    *
    * @return \CRM_Core_Controller_Simple
    */
-  function __construct(
+  public function __construct(
     $path,
     $title,
     $mode = NULL,
@@ -127,8 +127,10 @@ class CRM_Core_Controller_Simple extends CRM_Core_Controller {
   }
 
   /**
-   * A wrapper for getTemplateFileName that includes calling the hook to
-   * prevent us from having to copy & paste the logic of calling the hook
+   * A wrapper for getTemplateFileName.
+   *
+   * This includes calling the hook to  prevent us from having to copy & paste
+   * the logic of calling the hook
    */
   public function getHookedTemplateFileName() {
     $pageTemplateFile = $this->getTemplateFileName();
index 9c58bdaec6b2148d0700fe8e7d1ec910848da1d2..e36492ab3171b3d003c3530051e741ac0e16da4d 100644 (file)
@@ -134,7 +134,7 @@ class CRM_Core_QuickForm_Action_Upload extends CRM_Core_QuickForm_Action {
   }
 
   /**
-   * @todo what do I do?
+   * @todo document what I do.
    *
    * @param CRM_Core_Form $page
    * @param string $actionName
index bd31575094ea880e65f3c4e8736f490de92a0f22..fe878ad5b43d947748d1bc7ad154216bc10bd5fa 100644 (file)
@@ -19,9 +19,18 @@ class CRM_Dedupe_BAO_QueryBuilder_IndividualSupervised extends CRM_Dedupe_BAO_Qu
     $civicrm_email = CRM_Utils_Array::value('civicrm_email', $rg->params, array());
 
     $params = array(
-      1 => array(CRM_Utils_Array::value('first_name', $civicrm_contact, ''), 'String'),
-      2 => array(CRM_Utils_Array::value('last_name', $civicrm_contact, ''), 'String'),
-      3 => array(CRM_Utils_Array::value('email', $civicrm_email, ''), 'String'),
+      1 => array(
+        CRM_Utils_Array::value('first_name', $civicrm_contact, ''),
+        'String',
+      ),
+      2 => array(
+        CRM_Utils_Array::value('last_name', $civicrm_contact, ''),
+        'String',
+      ),
+      3 => array(
+        CRM_Utils_Array::value('email', $civicrm_email, ''),
+        'String',
+      ),
     );
 
     return array(
@@ -56,7 +65,9 @@ class CRM_Dedupe_BAO_QueryBuilder_IndividualSupervised extends CRM_Dedupe_BAO_Qu
                 email1.email=email2.email
             WHERE contact1.contact_type = 'Individual'
               AND " . self::internalFilters($rg);
-    return array("civicrm_contact.{$rg->name}.{$rg->threshold}" => $query);
+    return array(
+      "civicrm_contact.{$rg->name}.{$rg->threshold}" => $query
+    );
   }
 }
 
index 8480b2dc69e753880e88b6c88c7204bddefa955a..d2ab1df0476de7e48a3ddf78aef7af8c6f3d40e2 100644 (file)
@@ -64,7 +64,7 @@ class CRM_Event_Form_Task_Email extends CRM_Event_Form_Task {
   /**
    * Build all the data structures needed to build the form
    */
-  function preProcess() {
+  public function preProcess() {
     CRM_Contact_Form_Task_EmailCommon::preProcessFromAddress($this);
     parent::preProcess();
 
index 8a0c98e39782846ce18e2684ebfb1c7ebb6dd2c5..d940e01e60f9aca5241e6f62f642f61e88002262 100644 (file)
@@ -144,7 +144,7 @@ class CRM_Pledge_Selector_Search extends CRM_Core_Selector_Base {
    *
    * @return \CRM_Pledge_Selector_Search
    */
-  function __construct(
+  public function __construct(
     &$queryParams,
     $action = CRM_Core_Action::NONE,
     $additionalClause = NULL,
index 5c773d8212f13937dd38cff6a514a936f90fec41..91a15f19491a00c063e802c6ebeaf57cb57eae3f 100644 (file)
@@ -61,9 +61,7 @@ class CRM_SMS_Form_Provider extends CRM_Core_Form {
   }
 
   /**
-   * Build the form object
-   *
-   * @return void
+   * Build the form object.
    */
   public function buildQuickForm() {
     parent::buildQuickForm();
@@ -123,7 +121,7 @@ class CRM_SMS_Form_Provider extends CRM_Core_Form {
   }
 
   /**
-   * Set the default values of various form elements
+   * Set the default values of various form elements.
    *
    * @return array
    */