Merge pull request #13188 from JMAConsulting/core-563
[civicrm-core.git] / CRM / Price / Form / DeleteSet.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33
34/**
35 * This class is to build the form for Deleting Set
36 */
37class CRM_Price_Form_DeleteSet extends CRM_Core_Form {
38
39 /**
fe482240 40 * The set id.
6a488035
TO
41 *
42 * @var int
43 */
44 protected $_sid;
45
46 /**
fe482240 47 * The title of the set being deleted.
6a488035
TO
48 *
49 * @var string
50 */
51 protected $_title;
52
53 /**
fe482240 54 * Set up variables to build the form.
6a488035
TO
55 *
56 * @return void
95ea96be 57 */
79d7553f 58 public function preProcess() {
6a488035
TO
59 $this->_sid = $this->get('sid');
60
9da8dc8c 61 $this->_title = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet',
6a488035
TO
62 $this->_sid, 'title'
63 );
64 }
65
66 /**
fe482240 67 * Build the form object.
6a488035 68 *
355ba699 69 * @return void
6a488035
TO
70 */
71 public function buildQuickForm() {
72 $this->assign('title', $this->_title);
73 $this->addButtons(array(
c5c263ca
AH
74 array(
75 'type' => 'next',
76 'name' => ts('Delete Price Set'),
77 'isDefault' => TRUE,
78 ),
79 array(
80 'type' => 'cancel',
81 'name' => ts('Cancel'),
82 ),
83 ));
6a488035
TO
84 }
85
86 /**
fe482240 87 * Process the form when submitted.
6a488035
TO
88 *
89 * @return void
6a488035
TO
90 */
91 public function postProcess() {
9da8dc8c 92 if (CRM_Price_BAO_PriceSet::deleteSet($this->_sid)) {
6a488035 93 CRM_Core_Session::setStatus(ts('The Price Set \'%1\' has been deleted.',
353ffa53
TO
94 array(1 => $this->_title), ts('Deleted'), 'success'
95 ));
6a488035
TO
96 }
97 else {
98 CRM_Core_Session::setStatus(ts('The Price Set \'%1\' has not been deleted! You must delete all price fields in this set prior to deleting the set.',
353ffa53
TO
99 array(1 => $this->_title)
100 ), 'Unable to Delete', 'error');
6a488035
TO
101 }
102 }
96025800 103
6a488035 104}