a55bd08361690fe95f468db3cffe604c5809a0e3
[civicrm-core.git] / CRM / Price / Form / DeleteSet.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 * This class is to build the form for Deleting Set
38 */
39 class CRM_Price_Form_DeleteSet extends CRM_Core_Form {
40
41 /**
42 * the set id
43 *
44 * @var int
45 */
46 protected $_sid;
47
48 /**
49 * The title of the set being deleted
50 *
51 * @var string
52 */
53 protected $_title;
54
55 /**
56 * set up variables to build the form
57 *
58 * @return void
59 * @acess protected
60 */ function preProcess() {
61 $this->_sid = $this->get('sid');
62
63 $this->_title = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet',
64 $this->_sid, 'title'
65 );
66 }
67
68 /**
69 * Build the form object
70 *
71 * @return void
72 * @access public
73 */
74 public function buildQuickForm() {
75 $this->assign('title', $this->_title);
76 $this->addButtons(array(
77 array(
78 'type' => 'next',
79 'name' => ts('Delete Price Set'),
80 'isDefault' => TRUE,
81 ),
82 array(
83 'type' => 'cancel',
84 'name' => ts('Cancel'),
85 ),
86 )
87 );
88 }
89
90 /**
91 * Process the form when submitted
92 *
93 * @return void
94 * @access public
95 */
96 public function postProcess() {
97 if (CRM_Price_BAO_PriceSet::deleteSet($this->_sid)) {
98 CRM_Core_Session::setStatus(ts('The Price Set \'%1\' has been deleted.',
99 array(1 => $this->_title), ts('Deleted'), 'success'
100 ));
101 }
102 else {
103 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.',
104 array(1 => $this->_title)
105 ), 'Unable to Delete', 'error');
106 }
107 }
108 }
109