Merge pull request #7969 from monishdeb/CRM-18224
[civicrm-core.git] / CRM / Export / Form / Select.php
index 9e4e7149ff063b244d232f8db3e9db7bfdb6269e..4349d3427a1016f50ee4a89ba6a7c027d224efe8 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.6                                                |
+ | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2014
+ * @copyright CiviCRM LLC (c) 2004-2015
  * $Id$
  *
  */
@@ -39,7 +39,7 @@
 class CRM_Export_Form_Select extends CRM_Core_Form {
 
   /**
-   * Various Contact types
+   * Various Contact types.
    */
   const
     EXPORT_ALL = 1,
@@ -49,7 +49,7 @@ class CRM_Export_Form_Select extends CRM_Core_Form {
     EXPORT_MERGE_HOUSEHOLD = 2;
 
   /**
-   * Export modes
+   * Export modes.
    */
   const
     CONTACT_EXPORT = 1,
@@ -62,7 +62,7 @@ class CRM_Export_Form_Select extends CRM_Core_Form {
     ACTIVITY_EXPORT = 8;
 
   /**
-   * Current export mode
+   * Current export mode.
    *
    * @var int
    */
@@ -71,7 +71,7 @@ class CRM_Export_Form_Select extends CRM_Core_Form {
   public $_componentTable;
 
   /**
-   * Build all the data structures needed to build the form
+   * Build all the data structures needed to build the form.
    *
    * @param
    *
@@ -244,7 +244,7 @@ FROM   {$this->_componentTable}
   }
 
   /**
-   * Build the form object
+   * Build the form object.
    *
    * @return void
    */
@@ -338,7 +338,7 @@ FROM   {$this->_componentTable}
   }
 
   /**
-   * Validation
+   * Validation.
    *
    * @param array $params
    *   (ref.) an assoc array of name/value pairs.
@@ -375,7 +375,7 @@ FROM   {$this->_componentTable}
   }
 
   /**
-   * Process the uploaded file
+   * Process the uploaded file.
    *
    * @return void
    */
@@ -444,11 +444,11 @@ FROM   {$this->_componentTable}
    * @return string
    */
   public function getTitle() {
-    return ts('Export All or Selected Fields');
+    return ts('Export Options');
   }
 
   /**
-   * Build mapping form element
+   * Build mapping form element.
    */
   public function buildMapping() {
     switch ($this->_exportMode) {
@@ -526,4 +526,5 @@ FROM   {$this->_componentTable}
 
     return $options;
   }
+
 }