Merge pull request #4606 from johanv/CRM-15636-price_set_event_and_contribution
[civicrm-core.git] / CRM / Contribute / BAO / Premium.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Contribute_BAO_Premium extends CRM_Contribute_DAO_Premium {
36
37 /**
100fef9d 38 * Product information
6a488035
TO
39 * @var array
40 * @static
41 */
42 private static $productInfo;
43
44 /**
100fef9d 45 * Class constructor
665e5ec7 46 */
00be9182 47 public function __construct() {
6a488035
TO
48 parent::__construct();
49 }
50
51 /**
c490a46a 52 * Fetch object based on array of properties
6a488035
TO
53 *
54 * @param array $params (reference ) an assoc array of name/value pairs
55 * @param array $defaults (reference ) an assoc array to hold the flattened values
56 *
c490a46a 57 * @return CRM_Contribute_BAO_ManagePremium object
6a488035
TO
58 * @static
59 */
00be9182 60 public static function retrieve(&$params, &$defaults) {
6a488035
TO
61 $premium = new CRM_Contribute_DAO_Product();
62 $premium->copyValues($params);
63 if ($premium->find(TRUE)) {
64 CRM_Core_DAO::storeValues($premium, $defaults);
65 return $premium;
66 }
67 return NULL;
68 }
69
70 /**
100fef9d 71 * Update the is_active flag in the db
6a488035
TO
72 *
73 * @param int $id id of the database record
74 * @param boolean $is_active value we want to set the is_active field
75 *
76 * @return Object DAO object on sucess, null otherwise
77 * @static
78 */
00be9182 79 public static function setIsActive($id, $is_active) {
6a488035
TO
80 return CRM_Core_DAO::setFieldValue('CRM_Contribute_DAO_Premium', $id, 'premiums_active ', $is_active);
81 }
82
83 /**
100fef9d 84 * Delete financial Types
6a488035 85 *
100fef9d 86 * @param int $premiumID
f4aaa82a 87 *
6a488035
TO
88 * @static
89 */
00be9182 90 public static function del($premiumID) {
6a488035
TO
91 //check dependencies
92
93 //delete from financial Type table
94 $premium = new CRM_Contribute_DAO_Premium();
95 $premium->id = $premiumID;
96 $premium->delete();
97 }
98
99 /**
100fef9d 100 * Build Premium Block im Contribution Pages
6a488035 101 *
100fef9d
CW
102 * @param CRM_Core_Form $form
103 * @param int $pageID
f4aaa82a 104 * @param bool $formItems
100fef9d 105 * @param int $selectedProductID
f4aaa82a
EM
106 * @param null $selectedOption
107 *
6a488035
TO
108 * @static
109 */
00be9182 110 public static function buildPremiumBlock(&$form, $pageID, $formItems = FALSE, $selectedProductID = NULL, $selectedOption = NULL) {
6a488035
TO
111 $form->add('hidden', "selectProduct", $selectedProductID, array('id' => 'selectProduct'));
112
113 $dao = new CRM_Contribute_DAO_Premium();
114 $dao->entity_table = 'civicrm_contribution_page';
115 $dao->entity_id = $pageID;
116 $dao->premiums_active = 1;
117
118 if ($dao->find(TRUE)) {
119 $premiumID = $dao->id;
120 $premiumBlock = array();
121 CRM_Core_DAO::storeValues($dao, $premiumBlock);
122
123 $dao = new CRM_Contribute_DAO_PremiumsProduct();
124 $dao->premiums_id = $premiumID;
125 $dao->orderBy('weight');
126 $dao->find();
127
128 $products = array();
129 $radio = array();
130 while ($dao->fetch()) {
131 $productDAO = new CRM_Contribute_DAO_Product();
132 $productDAO->id = $dao->product_id;
133 $productDAO->is_active = 1;
134 if ($productDAO->find(TRUE)) {
135 if ($selectedProductID != NULL) {
136 if ($selectedProductID == $productDAO->id) {
137 if ($selectedOption) {
138 $productDAO->options = ts('Selected Option') . ': ' . $selectedOption;
139 }
140 else {
141 $productDAO->options = NULL;
142 }
143 CRM_Core_DAO::storeValues($productDAO, $products[$productDAO->id]);
144 }
145 }
146 else {
147 CRM_Core_DAO::storeValues($productDAO, $products[$productDAO->id]);
148 }
149 }
150 $options = $temp = array();
151 $temp = explode(',', $productDAO->options);
152 foreach ($temp as $value) {
153 $options[trim($value)] = trim($value);
154 }
155 if ($temp[0] != '') {
156 $form->addElement('select', 'options_' . $productDAO->id, NULL, $options);
157 }
158 }
159 if (count($products)) {
160 $form->assign('showPremium', $formItems);
161 $form->assign('showSelectOptions', $formItems);
162 $form->assign('products', $products);
163 $form->assign('premiumBlock', $premiumBlock);
164 }
165 }
166 }
167
168 /**
100fef9d 169 * Build Premium B im Contribution Pages
6a488035 170 *
c490a46a
CW
171 * @param CRM_Core_Form $form
172 * @param int $productID
173 * @param int $premiumProductID
f4aaa82a 174 *
6a488035
TO
175 * @static
176 */
00be9182 177 public function buildPremiumPreviewBlock($form, $productID, $premiumProductID = NULL) {
6a488035
TO
178 if ($premiumProductID) {
179 $dao = new CRM_Contribute_DAO_PremiumsProduct();
180 $dao->id = $premiumProductID;
181 $dao->find(TRUE);
182 $productID = $dao->product_id;
183 }
184 $productDAO = new CRM_Contribute_DAO_Product();
185 $productDAO->id = $productID;
186 $productDAO->is_active = 1;
187 if ($productDAO->find(TRUE)) {
188 CRM_Core_DAO::storeValues($productDAO, $products[$productDAO->id]);
189 }
190
191 $radio[$productDAO->id] = $form->createElement('radio', NULL, NULL, NULL, $productDAO->id, NULL);
192 $options = $temp = array();
193 $temp = explode(',', $productDAO->options);
194 foreach ($temp as $value) {
195 $options[$value] = $value;
196 }
197 if ($temp[0] != '') {
198 $form->add('select', 'options_' . $productDAO->id, NULL, $options);
199 }
200
201 $form->addGroup($radio, 'selectProduct', NULL);
202
203 $form->assign('showRadio', TRUE);
204 $form->assign('showSelectOptions', TRUE);
205 $form->assign('products', $products);
206 $form->assign('preview', TRUE);
207 }
208
209 /**
100fef9d 210 * Delete premium associated w/ contribution page.
6a488035 211 *
100fef9d 212 * @param int $contributionPageID
f4aaa82a 213 *
6a488035
TO
214 * @static
215 */
00be9182 216 public static function deletePremium($contributionPageID) {
6a488035
TO
217 if (!$contributionPageID) {
218 return;
219 }
220
221 //need to delete entries from civicrm_premiums
222 //as well as from civicrm_premiums_product, CRM-4586
223
224 $params = array(
225 'entity_id' => $contributionPageID,
226 'entity_table' => 'civicrm_contribution_page',
227 );
228
229 $premium = new CRM_Contribute_DAO_Premium();
230 $premium->copyValues($params);
231 $premium->find();
232 while ($premium->fetch()) {
233 //lets delete from civicrm_premiums_product
234 $premiumsProduct = new CRM_Contribute_DAO_PremiumsProduct();
235 $premiumsProduct->premiums_id = $premium->id;
236 $premiumsProduct->delete();
237
238 //now delete premium
239 $premium->delete();
240 }
241 }
242
243 /**
100fef9d 244 * Retrieve premium product and their options
6a488035
TO
245 *
246 * @return array product and option arrays
247 * @static
6a488035 248 */
00be9182 249 public static function getPremiumProductInfo() {
6a488035
TO
250 if (!self::$productInfo) {
251 $products = $options = array();
252
253 $dao = new CRM_Contribute_DAO_Product();
254 $dao->is_active = 1;
255 $dao->find();
256
257 while ($dao->fetch()) {
258 $products[$dao->id] = $dao->name . " ( " . $dao->sku . " )";
259 $opts = explode(',', $dao->options);
260 foreach ($opts as $k => $v) {
261 $ops[$k] = trim($v);
262 }
263 if ($ops[0] != '') {
264 $options[$dao->id] = $opts;
265 }
266 }
267
268 self::$productInfo = array($products, $options);
269 }
270 return self::$productInfo;
271 }
272}