comment fixes
authoreileenmcnaugton <eileen@fuzion.co.nz>
Wed, 30 Sep 2015 10:00:48 +0000 (23:00 +1300)
committereileenmcnaugton <eileen@fuzion.co.nz>
Wed, 30 Sep 2015 10:01:11 +0000 (23:01 +1300)
CRM/Group/Form/Edit.php
CRM/Group/Page/Group.php

index 728a4d5282c4ae4345fc76477ae46cd2096cde1a..7def4f7ab9723cb9ee12487ec24929ef1169cd23 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 
 /**
- * This class is to build the form for adding Group
+ * This class is to build the form for adding Group.
  */
 class CRM_Group_Form_Edit extends CRM_Core_Form {
 
@@ -82,8 +80,6 @@ class CRM_Group_Form_Edit extends CRM_Core_Form {
 
   /**
    * Set up variables to build the form.
-   *
-   * @return void
    */
   public function preProcess() {
     $this->_id = $this->get('id');
@@ -158,8 +154,7 @@ class CRM_Group_Form_Edit extends CRM_Core_Form {
   }
 
   /**
-   * Set default values for the form. LocationType that in edit/view mode
-   * the default values are retrieved from the database
+   * Set default values for the form.
    *
    * @return array
    */
@@ -209,8 +204,6 @@ class CRM_Group_Form_Edit extends CRM_Core_Form {
 
   /**
    * Build the form object.
-   *
-   * @return void
    */
   public function buildQuickForm() {
     if ($this->_action == CRM_Core_Action::DELETE) {
@@ -309,7 +302,7 @@ class CRM_Group_Form_Edit extends CRM_Core_Form {
    * @param array $fields
    *   Posted values of the form.
    * @param array $fileParams
-   * @param $options
+   * @param array $options
    *
    * @return array
    *   list of errors to be posted back to the form
@@ -366,8 +359,6 @@ WHERE  title = %1
 
   /**
    * Process the form when submitted.
-   *
-   * @return void
    */
   public function postProcess() {
     CRM_Utils_System::flushCache('CRM_Core_DAO_Group');
index a05663df1da86aea4cdcc32459060a768c6b3e4d..d1d825290a7c53466c13e50a9a1b2640f83c11c6 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
  */
 class CRM_Group_Page_Group extends CRM_Core_Page_Basic {
   protected $_sortByCharacter;
 
   /**
+   * Get BAO name.
+   *
    * @return string
    */
   public function getBAOName() {
@@ -115,12 +115,12 @@ class CRM_Group_Page_Group extends CRM_Core_Page_Basic {
   }
 
   /**
+   * Re-implement browse.
+   *
    * We need to do slightly different things for groups vs saved search groups, hence we
-   * reimplement browse from Page_Basic
+   * re-implement browse from Page_Basic.
    *
    * @param int $action
-   *
-   * @return void
    */
   public function browse($action = NULL) {
     $groupPermission = CRM_Core_Permission::check('edit groups') ? CRM_Core_Permission::EDIT : CRM_Core_Permission::VIEW;
@@ -150,6 +150,9 @@ class CRM_Group_Page_Group extends CRM_Core_Page_Basic {
     $this->search();
   }
 
+  /**
+   * Search for groups.
+   */
   public function search() {
     if ($this->_action & (CRM_Core_Action::ADD |
         CRM_Core_Action::UPDATE |