Merge pull request #3964 from totten/4.5-memlogtest
[civicrm-core.git] / CRM / Core / ShowHideBlocks.php
index ece4fd38be38a3d6c0b8a7c2f77ec52fddd87d95..c66b119ed4962fdb024c0e90f30787ab0c8e9e73 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.4                                                |
+ | CiviCRM version 4.5                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2013                                |
+ | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -28,7 +28,7 @@
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2013
+ * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
  *
  */
@@ -61,8 +61,7 @@ class CRM_Core_ShowHideBlocks {
    * @param array $show initial value of show array
    * @param array $hide initial value of hide array
    *
-   * @return Object     the newly created object
-   * @access public
+   * @return \CRM_Core_ShowHideBlocks the newly created object@access public
    */
   function __construct($show = NULL, $hide = NULL) {
     if (!empty($show)) {
@@ -175,10 +174,12 @@ class CRM_Core_ShowHideBlocks {
   /**
    * Create links that we can use in the form
    *
-   * @param CRM_Core_Form $form          the form object
-   * @param string        $prefix        the attribute that we are referencing
-   * @param string        $showLinkText  the text to be shown for the show link
-   * @param string        $hideLinkText  the text to be shown for the hide link
+   * @param CRM_Core_Form $form the form object
+   * @param string $prefix the attribute that we are referencing
+   * @param string $showLinkText the text to be shown for the show link
+   * @param string $hideLinkText the text to be shown for the hide link
+   *
+   * @param bool $assign
    *
    * @static
    *