further comment fixes
[civicrm-core.git] / CRM / Admin / Page / PdfFormats.php
index 5cdff8748c71359d1c7d620326d525c504eba7aa..57e9396be53e4c376b4c3e7961f6da439fc96779 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.6                                                |
+ | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
  | Copyright (C) 2011 Marty Wright                                    |
  | Licensed to CiviCRM under the Academic Free License version 3.0.   |
  | 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
  */
 
 /**
- * Page for displaying list of PDF Page Formats
+ * Page for displaying list of PDF Page Formats.
  */
 class CRM_Admin_Page_PdfFormats extends CRM_Core_Page_Basic {
 
   public $useLivePageJS = TRUE;
 
   /**
-   * The action links that we need to display for the browse screen
+   * The action links that we need to display for the browse screen.
    *
    * @var array
    */
   static $_links = NULL;
 
   /**
-   * Get BAO Name
+   * Get BAO Name.
    *
    * @return string
    *   Classname of BAO.
@@ -59,7 +57,7 @@ class CRM_Admin_Page_PdfFormats extends CRM_Core_Page_Basic {
   }
 
   /**
-   * Get action Links
+   * Get action Links.
    *
    * @return array
    *   (reference) of action links
@@ -87,7 +85,7 @@ class CRM_Admin_Page_PdfFormats extends CRM_Core_Page_Basic {
   }
 
   /**
-   * Get name of edit form
+   * Get name of edit form.
    *
    * @return string
    *   Classname of edit form.
@@ -97,7 +95,7 @@ class CRM_Admin_Page_PdfFormats extends CRM_Core_Page_Basic {
   }
 
   /**
-   * Get edit form name
+   * Get edit form name.
    *
    * @return string
    *   name of this page.
@@ -119,11 +117,9 @@ class CRM_Admin_Page_PdfFormats extends CRM_Core_Page_Basic {
   }
 
   /**
-   * Browse all PDF Page Formats
+   * Browse all PDF Page Formats.
    *
    * @param null $action
-   *
-   * @return void
    */
   public function browse($action = NULL) {
     // Get list of configured PDF Page Formats
@@ -150,4 +146,5 @@ class CRM_Admin_Page_PdfFormats extends CRM_Core_Page_Basic {
 
     $this->assign('rows', $pdfFormatList);
   }
+
 }