Merge pull request #831 from dlobo/CRM-12594
[civicrm-core.git] / CRM / Core / BAO / OptionGroup.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35 class CRM_Core_BAO_OptionGroup extends CRM_Core_DAO_OptionGroup {
36
37 /**
38 * class constructor
39 */
40 function __construct() {
41 parent::__construct();
42 }
43
44 /**
45 * Takes a bunch of params that are needed to match certain criteria and
46 * retrieves the relevant objects. Typically the valid params are only
47 * contact_id. We'll tweak this function to be more full featured over a period
48 * of time. This is the inverse function of create. It also stores all the retrieved
49 * values in the default array
50 *
51 * @param array $params (reference ) an assoc array of name/value pairs
52 * @param array $defaults (reference ) an assoc array to hold the flattened values
53 *
54 * @return object CRM_Core_BAO_OptionGroup object
55 * @access public
56 * @static
57 */
58 static function retrieve(&$params, &$defaults) {
59 $optionGroup = new CRM_Core_DAO_OptionGroup();
60 $optionGroup->copyValues($params);
61 if ($optionGroup->find(TRUE)) {
62 CRM_Core_DAO::storeValues($optionGroup, $defaults);
63 return $optionGroup;
64 }
65 return NULL;
66 }
67
68 /**
69 * update the is_active flag in the db
70 *
71 * @param int $id id of the database record
72 * @param boolean $is_active value we want to set the is_active field
73 *
74 * @return Object DAO object on sucess, null otherwise
75 * @static
76 */
77 static function setIsActive($id, $is_active) {
78 return CRM_Core_DAO::setFieldValue('CRM_Core_DAO_OptionGroup', $id, 'is_active', $is_active);
79 }
80
81 /**
82 * function to add the Option Group
83 *
84 * @param array $params reference array contains the values submitted by the form
85 * @param array $ids reference array contains the id
86 *
87 * @access public
88 * @static
89 *
90 * @return object
91 */
92 static function add(&$params, &$ids) {
93 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
94 $params['is_default'] = CRM_Utils_Array::value('is_default', $params, FALSE);
95
96 // action is taken depending upon the mode
97 $optionGroup = new CRM_Core_DAO_OptionGroup();
98 $optionGroup->copyValues($params);;
99
100 if ($params['is_default']) {
101 $query = "UPDATE civicrm_option_group SET is_default = 0";
102 CRM_Core_DAO::executeQuery($query);
103 }
104
105 $optionGroup->id = CRM_Utils_Array::value('optionGroup', $ids);
106 $optionGroup->save();
107 return $optionGroup;
108 }
109
110 /**
111 * Function to delete Option Group
112 *
113 * @param int $optionGroupId Id of the Option Group to be deleted.
114 *
115 * @return void
116 *
117 * @access public
118 * @static
119 */
120 static function del($optionGroupId) {
121 // need to delete all option value field before deleting group
122 $optionValue = new CRM_Core_DAO_OptionValue();
123 $optionValue->option_group_id = $optionGroupId;
124 $optionValue->delete();
125
126 $optionGroup = new CRM_Core_DAO_OptionGroup();
127 $optionGroup->id = $optionGroupId;
128 $optionGroup->delete();
129 }
130
131 /**
132 * Function to get title of the option group
133 *
134 * @param int $optionGroupId Id of the Option Group.
135 *
136 * @return String title
137 *
138 * @access public
139 * @static
140 */
141 static function getTitle($optionGroupId) {
142 $optionGroup = new CRM_Core_DAO_OptionGroup();
143 $optionGroup->id = $optionGroupId;
144 $optionGroup->find(TRUE);
145 return $optionGroup->name;
146 }
147 }
148