3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
37 * Business objects for managing price fields values.
40 class CRM_Price_BAO_PriceFieldValue
extends CRM_Price_DAO_PriceFieldValue
{
43 * insert/update a new entry in the database.
45 * @param array $params (reference), array $ids
49 * @return object CRM_Price_DAO_PriceFieldValue object
53 static function add(&$params, $ids = array()) {
55 $fieldValueBAO = new CRM_Price_BAO_PriceFieldValue();
56 $fieldValueBAO->copyValues($params);
58 if ($id = CRM_Utils_Array
::value('id', $ids)) {
59 $fieldValueBAO->id
= $id;
61 if (!empty($params['is_default'])) {
62 $query = 'UPDATE civicrm_price_field_value SET is_default = 0 WHERE price_field_id = %1';
63 $p = array(1 => array($params['price_field_id'], 'Integer'));
64 CRM_Core_DAO
::executeQuery($query, $p);
67 $fieldValueBAO->save();
68 return $fieldValueBAO;
72 * Creates a new entry in the database.
74 * @param array $params (reference), array $ids
78 * @return object CRM_Price_DAO_PriceFieldValue object
82 static function create(&$params, $ids = array()) {
84 if (!is_array($params) ||
empty($params)) {
87 if(empty($params['id']) && empty($params['name'])) {
88 $params['name'] = strtolower(CRM_Utils_String
::munge($params['label'], '_', 242));
91 if ($id = CRM_Utils_Array
::value('id', $ids) && !empty($params['weight'])) {
92 if (isset($params['name']))unset($params['name']);
96 $oldWeight = CRM_Core_DAO
::getFieldValue('CRM_Price_DAO_PriceFieldValue', $id, 'weight', 'id');
99 $fieldValues = array('price_field_id' => CRM_Utils_Array
::value('price_field_id', $params, 0));
100 $params['weight'] = CRM_Utils_Weight
::updateOtherWeights('CRM_Price_DAO_PriceFieldValue', $oldWeight, $params['weight'], $fieldValues);
103 if (!$id && empty($params['name'])) {
104 $params['name'] = CRM_Utils_String
::munge(CRM_Utils_Array
::value('label', $params), '_', 64);
106 if (empty($params['weight'])) {
107 $params['weight'] = 1;
110 $params['is_active'] = CRM_Utils_Array
::value('is_active', $params, 0);
112 return self
::add($params, $ids);
116 * Takes a bunch of params that are needed to match certain criteria and
117 * retrieves the relevant objects.
119 * @param array $params (reference ) an assoc array
120 * @param array $defaults (reference ) an assoc array to hold the flattened values
122 * @return object CRM_Price_DAO_PriceFieldValue object
126 static function retrieve(&$params, &$defaults) {
127 return CRM_Core_DAO
::commonRetrieve('CRM_Price_DAO_PriceFieldValue', $params, $defaults);
131 * Retrive the all values for given field id
133 * @param int $fieldId price_field_id
134 * @param array $values (reference ) to hold the values
135 * @param string $orderBy for order by, default weight
136 * @param bool|int $isActive is_active, default false
138 * @return array $values
143 static function getValues($fieldId, &$values, $orderBy = 'weight', $isActive = FALSE) {
144 $fieldValueDAO = new CRM_Price_DAO_PriceFieldValue();
145 $fieldValueDAO->price_field_id
= $fieldId;
146 $fieldValueDAO->orderBy($orderBy, 'label');
148 $fieldValueDAO->is_active
= 1;
150 $fieldValueDAO->find();
152 while ($fieldValueDAO->fetch()) {
153 CRM_Core_DAO
::storeValues($fieldValueDAO, $values[$fieldValueDAO->id
]);
160 * Get the price field option label.
162 * @param int $id id of field option.
164 * @return string name
170 public static function getOptionLabel($id) {
171 return CRM_Core_DAO
::getFieldValue('CRM_Price_DAO_PriceFieldValue', $id, 'label');
175 * update the is_active flag in the db
177 * @param int $id Id of the database record
178 * @param boolean $is_active Value we want to set the is_active field
180 * @return Object DAO object on sucess, null otherwise
185 static function setIsActive($id, $is_active) {
186 return CRM_Core_DAO
::setFieldValue('CRM_Price_DAO_PriceFieldValue', $id, 'is_active', $is_active);
190 * delete all values of the given field id
192 * @param int $fieldId Price field id
198 static function deleteValues($fieldId) {
203 $fieldValueDAO = new CRM_Price_DAO_PriceFieldValue();
204 $fieldValueDAO->price_field_id
= $fieldId;
205 $fieldValueDAO->delete();
218 static function del($id) {
223 $fieldValueDAO = new CRM_Price_DAO_PriceFieldValue();
224 $fieldValueDAO->id
= $id;
225 return $fieldValueDAO->delete();
229 * Update civicrm_price_field_value.financial_type_id
230 * when financial_type_id of contribution_page or event is changed
232 * @param int $entityId Id
233 * @param String $entityTable entity table
234 * @param String $financialTypeID financial type id
239 static function updateFinancialType($entityId, $entityTable, $financialTypeID) {
240 if (!$entityId ||
!$entityTable ||
!$financialTypeID) {
244 1 => array($entityId, 'Integer'),
245 2 => array($entityTable, 'String'),
246 3 => array($financialTypeID, 'Integer'),
248 // for event discount
250 if ($entityTable == 'civicrm_event') {
251 $join = " LEFT JOIN civicrm_discount cd ON cd.price_set_id = cps.id AND cd.entity_id = %1 AND cd.entity_table = %2 ";
252 $where = ' OR cd.id IS NOT NULL ';
254 $sql = "UPDATE civicrm_price_set cps
255 LEFT JOIN civicrm_price_set_entity cpse ON cpse.price_set_id = cps.id AND cpse.entity_id = %1 AND cpse.entity_table = %2
256 LEFT JOIN civicrm_price_field cpf ON cpf.price_set_id = cps.id
257 LEFT JOIN civicrm_price_field_value cpfv ON cpf.id = cpfv.price_field_id
259 SET cpfv.financial_type_id = CASE
260 WHEN cpfv.membership_type_id IS NOT NULL
261 THEN cpfv.financial_type_id
264 cps.financial_type_id = %3
265 WHERE cpse.id IS NOT NULL {$where}";
267 CRM_Core_DAO
::executeQuery($sql, $params);