CRM-15295 - Show 'new item' after creating a container
[civicrm-core.git] / CRM / Price / Page / Field.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * Create a page for displaying Price Fields.
38 *
39 * Heart of this class is the run method which checks
40 * for action type and then displays the appropriate
41 * page.
42 *
43 */
44 class CRM_Price_Page_Field extends CRM_Core_Page {
45
46 public $useLivePageJS = TRUE;
47
48 /**
49 * The price set group id of the field
50 *
51 * @var int
52 * @access protected
53 */
54 protected $_sid;
55
56 /**
57 * The action links that we need to display for the browse screen
58 *
59 * @var array
60 * @access private
61 */
62 private static $_actionLinks;
63
64 /**
65 * The price set is reserved or not
66 *
67 * @var boolean
68 * @access protected
69 */
70 protected $_isSetReserved = false;
71
72 /**
73 * Get the action links for this page.
74 *
75 * @param null
76 *
77 * @return array array of action links that we need to display for the browse screen
78 * @access public
79 */ function &actionLinks() {
80 if (!isset(self::$_actionLinks)) {
81 self::$_actionLinks = array(
82 CRM_Core_Action::UPDATE => array(
83 'name' => ts('Edit Price Field'),
84 'url' => 'civicrm/admin/price/field',
85 'qs' => 'action=update&reset=1&sid=%%sid%%&fid=%%fid%%',
86 'title' => ts('Edit Price'),
87 ),
88 CRM_Core_Action::PREVIEW => array(
89 'name' => ts('Preview Field'),
90 'url' => 'civicrm/admin/price/field',
91 'qs' => 'action=preview&reset=1&sid=%%sid%%&fid=%%fid%%',
92 'title' => ts('Preview Price'),
93 ),
94 CRM_Core_Action::DISABLE => array(
95 'name' => ts('Disable'),
96 'ref' => 'crm-enable-disable',
97 'title' => ts('Disable Price'),
98 ),
99 CRM_Core_Action::ENABLE => array(
100 'name' => ts('Enable'),
101 'ref' => 'crm-enable-disable',
102 'title' => ts('Enable Price'),
103 ),
104 CRM_Core_Action::DELETE => array(
105 'name' => ts('Delete'),
106 'url' => 'civicrm/admin/price/field',
107 'qs' => 'action=delete&reset=1&sid=%%sid%%&fid=%%fid%%',
108 'title' => ts('Delete Price'),
109 ),
110 );
111 }
112 return self::$_actionLinks;
113 }
114
115 /**
116 * Browse all price set fields.
117 *
118 * @param null
119 *
120 * @return void
121 * @access public
122 */
123 function browse() {
124 $resourceManager = CRM_Core_Resources::singleton();
125 if (!empty($_GET['new']) && $resourceManager->ajaxPopupsEnabled) {
126 $resourceManager->addScriptFile('civicrm', 'js/crm.addNew.js', 999);
127 }
128
129 $priceField = array();
130 $priceFieldBAO = new CRM_Price_BAO_PriceField();
131
132 // fkey is sid
133 $priceFieldBAO->price_set_id = $this->_sid;
134 $priceFieldBAO->orderBy('weight, label');
135 $priceFieldBAO->find();
136
137 while ($priceFieldBAO->fetch()) {
138 $priceField[$priceFieldBAO->id] = array();
139 CRM_Core_DAO::storeValues($priceFieldBAO, $priceField[$priceFieldBAO->id]);
140
141 // get price if it's a text field
142 if ($priceFieldBAO->html_type == 'Text') {
143 $optionValues = array();
144 $params = array('price_field_id' => $priceFieldBAO->id);
145
146 CRM_Price_BAO_PriceFieldValue::retrieve($params, $optionValues);
147
148 $priceField[$priceFieldBAO->id]['price'] = CRM_Utils_Array::value('amount', $optionValues);
149 }
150
151 $action = array_sum(array_keys($this->actionLinks()));
152
153 if ($this->_isSetReserved) {
154 $action -= CRM_Core_Action::UPDATE + CRM_Core_Action::DELETE + CRM_Core_Action::ENABLE + CRM_Core_Action::DISABLE;
155 }
156 else {
157 if ($priceFieldBAO->is_active) {
158 $action -= CRM_Core_Action::ENABLE;
159 }
160 else {
161 $action -= CRM_Core_Action::DISABLE;
162 }
163 }
164
165 if ($priceFieldBAO->active_on == '0000-00-00 00:00:00') {
166 $priceField[$priceFieldBAO->id]['active_on'] = '';
167 }
168
169 if ($priceFieldBAO->expire_on == '0000-00-00 00:00:00') {
170 $priceField[$priceFieldBAO->id]['expire_on'] = '';
171 }
172
173 // need to translate html types from the db
174 $htmlTypes = CRM_Price_BAO_PriceField::htmlTypes();
175 $priceField[$priceFieldBAO->id]['html_type_display'] = $htmlTypes[$priceField[$priceFieldBAO->id]['html_type']];
176 $priceField[$priceFieldBAO->id]['order'] = $priceField[$priceFieldBAO->id]['weight'];
177 $priceField[$priceFieldBAO->id]['action'] = CRM_Core_Action::formLink(
178 self::actionLinks(),
179 $action,
180 array(
181 'fid' => $priceFieldBAO->id,
182 'sid' => $this->_sid,
183 ),
184 ts('more'),
185 FALSE,
186 'priceField.row.actions',
187 'PriceField',
188 $priceFieldBAO->id
189 );
190 }
191
192 $returnURL = CRM_Utils_System::url('civicrm/admin/price/field', "reset=1&action=browse&sid={$this->_sid}");
193 $filter = "price_set_id = {$this->_sid}";
194 CRM_Utils_Weight::addOrder($priceField, 'CRM_Price_DAO_PriceField',
195 'id', $returnURL, $filter
196 );
197 $this->assign('priceField', $priceField);
198 }
199
200 /**
201 * edit price data.
202 *
203 * editing would involved modifying existing fields + adding data to new fields.
204 *
205 * @param string $action the action to be invoked
206
207 *
208 * @return void
209 * @access public
210 */
211 function edit($action) {
212 // create a simple controller for editing price data
213 $controller = new CRM_Core_Controller_Simple('CRM_Price_Form_Field', ts('Price Field'), $action);
214
215 // set the userContext stack
216 $session = CRM_Core_Session::singleton();
217 $session->pushUserContext(CRM_Utils_System::url('civicrm/admin/price/field', 'reset=1&action=browse&sid=' . $this->_sid));
218
219 $controller->set('sid', $this->_sid);
220 $controller->setEmbedded(TRUE);
221 $controller->process();
222 $controller->run();
223 }
224
225 /**
226 * Run the page.
227 *
228 * This method is called after the page is created. It checks for the
229 * type of action and executes that action.
230 *
231 * @param null
232 *
233 * @return void
234 * @access public
235 */
236 function run() {
237
238 // get the group id
239 $this->_sid = CRM_Utils_Request::retrieve('sid', 'Positive',
240 $this
241 );
242 $fid = CRM_Utils_Request::retrieve('fid', 'Positive',
243 $this, FALSE, 0
244 );
245 $action = CRM_Utils_Request::retrieve('action', 'String',
246 // default to 'browse'
247 $this, FALSE, 'browse'
248 );
249
250 if ($this->_sid) {
251 $usedBy = CRM_Price_BAO_PriceSet::getUsedBy($this->_sid);
252 $this->assign('usedBy', $usedBy);
253 $this->_isSetReserved= CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $this->_sid, 'is_reserved');
254 $this->assign('isReserved', $this->_isSetReserved);
255
256 CRM_Price_BAO_PriceSet::checkPermission($this->_sid);
257 $comps = array(
258 'Event' => 'civicrm_event',
259 'Contribution' => 'civicrm_contribution_page',
260 'EventTemplate' => 'civicrm_event_template'
261 );
262 $priceSetContexts = array();
263 foreach ($comps as $name => $table) {
264 if (array_key_exists($table, $usedBy)) {
265 $priceSetContexts[] = $name;
266 }
267 }
268 $this->assign('contexts', $priceSetContexts);
269 }
270
271 if ($action & (CRM_Core_Action::DELETE) && !$this->_isSetReserved) {
272 if (empty($usedBy)) {
273 // prompt to delete
274 $session = CRM_Core_Session::singleton();
275 $session->pushUserContext(CRM_Utils_System::url('civicrm/admin/price/field', 'reset=1&action=browse&sid=' . $this->_sid));
276 $controller = new CRM_Core_Controller_Simple('CRM_Price_Form_DeleteField', 'Delete Price Field', '');
277 $controller->set('fid', $fid);
278 $controller->setEmbedded(TRUE);
279 $controller->process();
280 $controller->run();
281 }
282 else {
283 // add breadcrumb
284 $url = CRM_Utils_System::url('civicrm/admin/price/field', 'reset=1');
285 CRM_Utils_System::appendBreadCrumb(ts('Price'),
286 $url
287 );
288 $this->assign('usedPriceSetTitle', CRM_Price_BAO_PriceField::getTitle($fid));
289 }
290 }
291
292 if ($this->_sid) {
293 $groupTitle = CRM_Price_BAO_PriceSet::getTitle($this->_sid);
294 $this->assign('sid', $this->_sid);
295 $this->assign('groupTitle', $groupTitle);
296 CRM_Utils_System::setTitle(ts('%1 - Price Fields', array(1 => $groupTitle)));
297 }
298
299 // assign vars to templates
300 $this->assign('action', $action);
301
302 // what action to take ?
303 if ($action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD) && !$this->_isSetReserved) {
304 // no browse for edit/update/view
305 $this->edit($action);
306 }
307 elseif ($action & CRM_Core_Action::PREVIEW) {
308 $this->preview($fid);
309 }
310 else {
311 $this->browse();
312 }
313
314 // Call the parents run method
315 return parent::run();
316 }
317
318 /**
319 * Preview price field
320 *
321 * @param $fid
322 *
323 * @internal param int $id price field id
324 *
325 * @return void
326 * @access public
327 */
328 function preview($fid) {
329 $controller = new CRM_Core_Controller_Simple('CRM_Price_Form_Preview', ts('Preview Form Field'), CRM_Core_Action::PREVIEW);
330 $session = CRM_Core_Session::singleton();
331 $session->pushUserContext(CRM_Utils_System::url('civicrm/admin/price/field', 'reset=1&action=browse&sid=' . $this->_sid));
332 $controller->set('fieldId', $fid);
333 $controller->set('groupId', $this->_sid);
334 $controller->setEmbedded(TRUE);
335 $controller->process();
336 $controller->run();
337 }
338 }
339