CRM-16019 - Expose date/time format preferences to clientside
[civicrm-core.git] / CRM / Admin / Form / Navigation.php
index 6ec4ad8a7e70c045f1a59ab65d1b7cdc02e027ff..15c1fdd169aaa348b8ba1cbd09eb19cb5875af9d 100644 (file)
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
 class CRM_Admin_Form_Navigation extends CRM_Admin_Form {
 
   /**
-   * The parent id of the navigation menu
+   * The parent id of the navigation menu.
    */
   protected $_currentParentID = NULL;
 
   /**
-   * Default values
+   * Default values.
    */
   protected $_defaults = array();
 
   /**
-   * Build the form object
+   * Build the form object.
    *
    * @return void
-   * @access public
    */
   public function buildQuickForm() {
     parent::buildQuickForm();
@@ -143,9 +142,8 @@ class CRM_Admin_Form_Navigation extends CRM_Admin_Form {
   }
 
   /**
-   * Process the form submission
+   * Process the form submission.
    *
-   * @access public
    *
    * @return void
    */
@@ -164,7 +162,8 @@ class CRM_Admin_Form_Navigation extends CRM_Admin_Form {
     CRM_Core_BAO_Navigation::resetNavigation();
 
     CRM_Core_Session::setStatus(ts('Menu \'%1\' has been saved.',
-        array(1 => $navigation->label)
-      ), ts('Saved'), 'success');
+      array(1 => $navigation->label)
+    ), ts('Saved'), 'success');
   }
+
 }