comment fixes
[civicrm-core.git] / CRM / Core / Joomla.php
index a56ff1d0e8e39a595163f7fd2e6a5f31448444c1..5d3330d7e4b8d41c48e68b7df9a0aeac64e1c735 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
- * $Id$
- *
+ * @copyright CiviCRM LLC (c) 2004-2015
  */
 
 /**
+ * Joomla class.
  *
+ * (clearly copied & pasted from a drupal class).
+ *
+ * Still used?
  */
 class CRM_Core_Joomla {
 
   /**
-   * Reuse drupal blocks into a left sidebar. Assign the generated template
-   * to the smarty instance
+   * Reuse drupal blocks into a left sidebar.
    *
-   * @return void
-   * @static
+   * Assign the generated template to the smarty instance.
    */
   public static function sidebarLeft() {
     $config = CRM_Core_Config::singleton();
@@ -72,4 +72,5 @@ class CRM_Core_Joomla {
     $sidebarLeft = $template->fetch('CRM/Block/blocks.tpl');
     $template->assign_by_ref('sidebarLeft', $sidebarLeft);
   }
+
 }