CRM-15003 - Allow autocomplete to select closed cases
[civicrm-core.git] / CRM / SMS / Form / Provider.php
index 787e3477d95b6dbcab5f6af6f008a8aa56c91c39..b6dd2230cac6b93ea3af957f62f6af37cba9f52f 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.3                                                |
+ | CiviCRM version 4.5                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2013                                |
+ | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -28,7 +28,7 @@
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2013
+ * @copyright CiviCRM LLC (c) 2004-2014
  * $Id: $
  *
  */
@@ -64,7 +64,7 @@ class CRM_SMS_Form_Provider extends CRM_Core_Form {
   /**
    * Function to build the form
    *
-   * @return None
+   * @return void
    * @access public
    */
   public function buildQuickForm() {
@@ -134,6 +134,18 @@ class CRM_SMS_Form_Provider extends CRM_Core_Form {
     $this->add('checkbox', 'is_default', ts('Is this a default provider?'));
   }
 
+  /**
+   * This virtual function is used to set the default values of
+   * various form elements
+   *
+   * access        public
+   *
+   * @return array reference to the array of default values
+   *
+   */
+  /**
+   * @return array
+   */
   function setDefaultValues() {
     $defaults = array();
 
@@ -169,7 +181,7 @@ class CRM_SMS_Form_Provider extends CRM_Core_Form {
    *
    * @access public
    *
-   * @return None
+   * @return void
    */
   public function postProcess() {