X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FBAO%2FOptionGroup.php;h=c03ed0e4dfb087fedf61b705c83be84b05b78937;hb=d36b8b20ac964dc3c0a74f98f580dc7b0ad7383e;hp=09592e0cfd6fe3ed872824f6ce736e2534f628c3;hpb=10c5b975bac2283796e1461ceebc2c7888e9f1e6;p=civicrm-core.git diff --git a/CRM/Core/BAO/OptionGroup.php b/CRM/Core/BAO/OptionGroup.php index 09592e0cfd..c03ed0e4df 100644 --- a/CRM/Core/BAO/OptionGroup.php +++ b/CRM/Core/BAO/OptionGroup.php @@ -1,7 +1,7 @@ copyValues($params); if ($optionGroup->find(TRUE)) { @@ -66,31 +63,35 @@ class CRM_Core_BAO_OptionGroup extends CRM_Core_DAO_OptionGroup { } /** - * update the is_active flag in the db + * Update the is_active flag in the db * - * @param int $id id of the database record - * @param boolean $is_active value we want to set the is_active field + * @param int $id + * Id of the database record. + * @param bool $is_active + * Value we want to set the is_active field. * - * @return Object DAO object on sucess, null otherwise + * @return Object + * DAO object on sucess, null otherwise * @static */ - static function setIsActive($id, $is_active) { + public static function setIsActive($id, $is_active) { return CRM_Core_DAO::setFieldValue('CRM_Core_DAO_OptionGroup', $id, 'is_active', $is_active); } /** - * function to add the Option Group + * Add the Option Group * - * @param array $params reference array contains the values submitted by the form - * @param array $ids reference array contains the id + * @param array $params + * Reference array contains the values submitted by the form. + * @param array $ids + * Reference array contains the id. * - * @access public * @static * * @return object */ - static function add(&$params, $ids = array()) { - if(empty($params['id'])){ + public static function add(&$params, $ids = array()) { + if (empty($params['id'])) { $params['id'] = CRM_Utils_Array::value('optionGroup', $ids); } @@ -111,16 +112,16 @@ class CRM_Core_BAO_OptionGroup extends CRM_Core_DAO_OptionGroup { } /** - * Function to delete Option Group + * Delete Option Group * - * @param int $optionGroupId Id of the Option Group to be deleted. + * @param int $optionGroupId + * Id of the Option Group to be deleted. * * @return void * - * @access public * @static */ - static function del($optionGroupId) { + public static function del($optionGroupId) { // need to delete all option value field before deleting group $optionValue = new CRM_Core_DAO_OptionValue(); $optionValue->option_group_id = $optionGroupId; @@ -132,20 +133,20 @@ class CRM_Core_BAO_OptionGroup extends CRM_Core_DAO_OptionGroup { } /** - * Function to get title of the option group + * Get title of the option group * - * @param int $optionGroupId Id of the Option Group. + * @param int $optionGroupId + * Id of the Option Group. * - * @return String title + * @return String + * title * - * @access public * @static */ - static function getTitle($optionGroupId) { + public static function getTitle($optionGroupId) { $optionGroup = new CRM_Core_DAO_OptionGroup(); $optionGroup->id = $optionGroupId; $optionGroup->find(TRUE); return $optionGroup->name; } } -