Merge pull request #5760 from sudhabisht/SMSissue
[civicrm-core.git] / CRM / Core / ShowHideBlocks.php
index 866323ca82cf66b1d305ef09a1360f3134da576b..aa6fbf24694e1d3b1f40a484479cf52da033efa2 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
- | 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$
  *
  */
@@ -42,21 +42,21 @@ class CRM_Core_ShowHideBlocks {
   static $_showIcon, $_hideIcon;
 
   /**
-   * The array of ids of blocks that will be shown
+   * The array of ids of blocks that will be shown.
    *
    * @var array
    */
   protected $_show;
 
   /**
-   * The array of ids of blocks that will be hidden
+   * The array of ids of blocks that will be hidden.
    *
    * @var array
    */
   protected $_hide;
 
   /**
-   * Class constructor
+   * Class constructor.
    *
    * @param array $show
    *   Initial value of show array.
@@ -82,7 +82,7 @@ class CRM_Core_ShowHideBlocks {
   }
 
   /**
-   * Load icon vars used in hide and show links
+   * Load icon vars used in hide and show links.
    *
    * @return void
    */
@@ -95,7 +95,7 @@ class CRM_Core_ShowHideBlocks {
   }
 
   /**
-   * Add the values from this class to the template
+   * Add the values from this class to the template.
    *
    * @return void
    */
@@ -126,7 +126,7 @@ class CRM_Core_ShowHideBlocks {
   }
 
   /**
-   * Add a value to the show array
+   * Add a value to the show array.
    *
    * @param string $name
    *   Id to be added.
@@ -141,7 +141,7 @@ class CRM_Core_ShowHideBlocks {
   }
 
   /**
-   * Add a value to the hide array
+   * Add a value to the hide array.
    *
    * @param string $name
    *   Id to be added.
@@ -156,7 +156,7 @@ class CRM_Core_ShowHideBlocks {
   }
 
   /**
-   * Create a well formatted html link from the smaller pieces
+   * Create a well formatted html link from the smaller pieces.
    *
    * @param string $name
    *   Name of the link.
@@ -172,7 +172,7 @@ class CRM_Core_ShowHideBlocks {
   }
 
   /**
-   * Create links that we can use in the form
+   * Create links that we can use in the form.
    *
    * @param CRM_Core_Form $form
    *   The form object.
@@ -206,7 +206,7 @@ class CRM_Core_ShowHideBlocks {
   }
 
   /**
-   * Create html link elements that we can use in the form
+   * Create html link elements that we can use in the form.
    *
    * @param CRM_Core_Form $form
    *   The form object.