X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FComponent%2FInfo.php;h=4ee0ec4220f83531511bfb920760468e1945a32d;hb=cbb7c7e041ba2bb0d6d623f4841bdb61ea824f55;hp=c53dae9a7ac9a0b238aea3dab1734e7815d13b53;hpb=f55dc004da41039c49297aafdfe8adbbfce8f7dc;p=civicrm-core.git diff --git a/CRM/Core/Component/Info.php b/CRM/Core/Component/Info.php index c53dae9a7a..4ee0ec4220 100644 --- a/CRM/Core/Component/Info.php +++ b/CRM/Core/Component/Info.php @@ -38,49 +38,49 @@ 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;