CRM-16189, code cleanup
[civicrm-core.git] / CRM / Contribute / BAO / Premium.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
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
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
32 */
33class CRM_Contribute_BAO_Premium extends CRM_Contribute_DAO_Premium {
34
35 /**
fe482240 36 * Product information.
663b5e57 37 *
6a488035 38 * @var array
6a488035
TO
39 */
40 private static $productInfo;
41
42 /**
fe482240 43 * Class constructor.
665e5ec7 44 */
00be9182 45 public function __construct() {
6a488035
TO
46 parent::__construct();
47 }
48
49 /**
fe482240 50 * Fetch object based on array of properties.
6a488035 51 *
014c4014
TO
52 * @param array $params
53 * (reference ) an assoc array of name/value pairs.
54 * @param array $defaults
55 * (reference ) an assoc array to hold the flattened values.
6a488035 56 *
663b5e57 57 * @return CRM_Contribute_DAO_Product
6a488035 58 */
00be9182 59 public static function retrieve(&$params, &$defaults) {
6a488035
TO
60 $premium = new CRM_Contribute_DAO_Product();
61 $premium->copyValues($params);
62 if ($premium->find(TRUE)) {
63 CRM_Core_DAO::storeValues($premium, $defaults);
64 return $premium;
65 }
66 return NULL;
67 }
68
69 /**
fe482240 70 * Update the is_active flag in the db.
6a488035 71 *
014c4014
TO
72 * @param int $id
73 * Id of the database record.
74 * @param bool $is_active
75 * Value we want to set the is_active field.
6a488035 76 *
a6c01b45 77 * @return Object
b44e3f84 78 * DAO object on success, null otherwise
6a488035 79 */
00be9182 80 public static function setIsActive($id, $is_active) {
6a488035
TO
81 return CRM_Core_DAO::setFieldValue('CRM_Contribute_DAO_Premium', $id, 'premiums_active ', $is_active);
82 }
83
84 /**
fe482240 85 * Delete financial Types.
6a488035 86 *
100fef9d 87 * @param int $premiumID
6a488035 88 */
00be9182 89 public static function del($premiumID) {
6a488035
TO
90 $premium = new CRM_Contribute_DAO_Premium();
91 $premium->id = $premiumID;
92 $premium->delete();
93 }
94
95 /**
fe482240 96 * Build Premium Block im Contribution Pages.
6a488035 97 *
100fef9d
CW
98 * @param CRM_Core_Form $form
99 * @param int $pageID
f4aaa82a 100 * @param bool $formItems
100fef9d 101 * @param int $selectedProductID
663b5e57 102 * @param string $selectedOption
6a488035 103 */
00be9182 104 public static function buildPremiumBlock(&$form, $pageID, $formItems = FALSE, $selectedProductID = NULL, $selectedOption = NULL) {
6a488035
TO
105 $form->add('hidden', "selectProduct", $selectedProductID, array('id' => 'selectProduct'));
106
107 $dao = new CRM_Contribute_DAO_Premium();
108 $dao->entity_table = 'civicrm_contribution_page';
109 $dao->entity_id = $pageID;
110 $dao->premiums_active = 1;
573fd305 111 CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($financialTypes, CRM_Core_Action::ADD);
7fb041e3
E
112 $addWhere = "financial_type_id IN (0)";
113 if (!empty($financialTypes)) {
40c655aa 114 $addWhere = "financial_type_id IN (" . implode(',', array_keys($financialTypes)) . ")";
7fb041e3 115 }
6a488035
TO
116
117 if ($dao->find(TRUE)) {
118 $premiumID = $dao->id;
119 $premiumBlock = array();
120 CRM_Core_DAO::storeValues($dao, $premiumBlock);
121
122 $dao = new CRM_Contribute_DAO_PremiumsProduct();
123 $dao->premiums_id = $premiumID;
7fb041e3 124 $dao->whereAdd($addWhere);
6a488035
TO
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 /**
fe482240 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
6a488035 174 */
00be9182 175 public function buildPremiumPreviewBlock($form, $productID, $premiumProductID = NULL) {
6a488035
TO
176 if ($premiumProductID) {
177 $dao = new CRM_Contribute_DAO_PremiumsProduct();
178 $dao->id = $premiumProductID;
179 $dao->find(TRUE);
180 $productID = $dao->product_id;
181 }
182 $productDAO = new CRM_Contribute_DAO_Product();
183 $productDAO->id = $productID;
184 $productDAO->is_active = 1;
185 if ($productDAO->find(TRUE)) {
186 CRM_Core_DAO::storeValues($productDAO, $products[$productDAO->id]);
187 }
188
189 $radio[$productDAO->id] = $form->createElement('radio', NULL, NULL, NULL, $productDAO->id, NULL);
190 $options = $temp = array();
191 $temp = explode(',', $productDAO->options);
192 foreach ($temp as $value) {
193 $options[$value] = $value;
194 }
195 if ($temp[0] != '') {
196 $form->add('select', 'options_' . $productDAO->id, NULL, $options);
197 }
198
199 $form->addGroup($radio, 'selectProduct', NULL);
200
201 $form->assign('showRadio', TRUE);
202 $form->assign('showSelectOptions', TRUE);
203 $form->assign('products', $products);
204 $form->assign('preview', TRUE);
205 }
206
207 /**
100fef9d 208 * Delete premium associated w/ contribution page.
6a488035 209 *
100fef9d 210 * @param int $contributionPageID
6a488035 211 */
00be9182 212 public static function deletePremium($contributionPageID) {
6a488035
TO
213 if (!$contributionPageID) {
214 return;
215 }
216
217 //need to delete entries from civicrm_premiums
218 //as well as from civicrm_premiums_product, CRM-4586
219
220 $params = array(
221 'entity_id' => $contributionPageID,
222 'entity_table' => 'civicrm_contribution_page',
223 );
224
225 $premium = new CRM_Contribute_DAO_Premium();
226 $premium->copyValues($params);
227 $premium->find();
228 while ($premium->fetch()) {
229 //lets delete from civicrm_premiums_product
230 $premiumsProduct = new CRM_Contribute_DAO_PremiumsProduct();
231 $premiumsProduct->premiums_id = $premium->id;
232 $premiumsProduct->delete();
233
234 //now delete premium
235 $premium->delete();
236 }
237 }
238
239 /**
fe482240 240 * Retrieve premium product and their options.
6a488035 241 *
a6c01b45
CW
242 * @return array
243 * product and option arrays
6a488035 244 */
00be9182 245 public static function getPremiumProductInfo() {
6a488035
TO
246 if (!self::$productInfo) {
247 $products = $options = array();
248
249 $dao = new CRM_Contribute_DAO_Product();
250 $dao->is_active = 1;
251 $dao->find();
252
253 while ($dao->fetch()) {
254 $products[$dao->id] = $dao->name . " ( " . $dao->sku . " )";
255 $opts = explode(',', $dao->options);
256 foreach ($opts as $k => $v) {
257 $ops[$k] = trim($v);
258 }
259 if ($ops[0] != '') {
260 $options[$dao->id] = $opts;
261 }
262 }
263
264 self::$productInfo = array($products, $options);
265 }
266 return self::$productInfo;
267 }
96025800 268
6a488035 269}