further comment fixes
[civicrm-core.git] / CRM / Admin / Page / ContactType.php
index fb5d6bfc8548454099c8575b3af23146a770af55..9da8ab50b3451d01b67693cec73f9464e9e62d94 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * Page for displaying list of contact Subtypes
+ * Page for displaying list of contact Subtypes.
  */
 class CRM_Admin_Page_ContactType extends CRM_Core_Page_Basic {
 
@@ -93,6 +91,9 @@ class CRM_Admin_Page_ContactType extends CRM_Core_Page_Basic {
     return self::$_links;
   }
 
+  /**
+   * Run page.
+   */
   public function run() {
     $action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 0);
     $this->assign('action', $action);
@@ -103,6 +104,9 @@ class CRM_Admin_Page_ContactType extends CRM_Core_Page_Basic {
     return parent::run();
   }
 
+  /**
+   * Browse contact types.
+   */
   public function browse() {
     $rows = CRM_Contact_BAO_ContactType::contactTypeInfo(TRUE);
     foreach ($rows as $key => $value) {