preliminary whitespace cleanup
[civicrm-core.git] / CRM / Core / Component / Info.php
index c53dae9a7ac9a0b238aea3dab1734e7815d13b53..4ee0ec4220f83531511bfb920760468e1945a32d 100644 (file)
 abstract class CRM_Core_Component_Info {
 
   /*
-     * Name of the class (minus component namespace path) 
-     * of the component invocation class'es name. 
+     * Name of the class (minus component namespace path)
+     * of the component invocation class'es name.
      */
   CONST COMPONENT_INVOKE_CLASS = 'Invoke';
 
   /*
-     * Name of the class (minus component namespace path) 
+     * Name of the class (minus component namespace path)
      * of the component configuration class'es name.
      */
   CONST COMPONENT_CONFIG_CLASS = 'Config';
 
   /*
-     * Name of the class (minus component namespace path) 
+     * Name of the class (minus component namespace path)
      * of the component BAO Query class'es name.
      */
   CONST COMPONENT_BAO_QUERY_CLASS = 'BAO_Query';
 
   /*
-     * Name of the class (minus component namespace path) 
+     * Name of the class (minus component namespace path)
      * of the component user dashboard plugin.
      */
   CONST COMPONENT_USERDASHBOARD_CLASS = 'Page_UserDashboard';
 
   /*
-     * Name of the class (minus component namespace path) 
+     * Name of the class (minus component namespace path)
      * of the component tab offered to contact record view.
      */
   CONST COMPONENT_TAB_CLASS = 'Page_Tab';
 
   /*
-     * Name of the class (minus component namespace path) 
+     * Name of the class (minus component namespace path)
      * of the component tab offered to contact record view.
      */
   CONST COMPONENT_ADVSEARCHPANE_CLASS = 'Form_Search_AdvancedSearchPane';
 
   /*
-     * Name of the directory (assumed in component directory) 
+     * Name of the directory (assumed in component directory)
      * where xml resources used by this component live.
      */
   CONST COMPONENT_XML_RESOURCES = 'xml';
 
   /*
-     * Name of the directory (assumed in xml resources path) 
+     * Name of the directory (assumed in xml resources path)
      * containing component menu definition XML file names.
      */
   CONST COMPONENT_MENU_XML = 'Menu';
@@ -101,11 +101,11 @@ abstract class CRM_Core_Component_Info {
    * Class constructor, sets name and namespace (those are stored
    * in the component registry (database) and no need to duplicate
    * them here, as well as populates the info variable.
-   * 
+   *
    * @param string $name name of the component
    * @param string $namespace namespace prefix for component's files
    * @access public
-   * 
+   *
    */
   public function __construct($name, $namespace, $componentID) {
     $this->name        = $name;