Merge pull request #22572 from yashodha/dev_3012
[civicrm-core.git] / CRM / Price / Form / DeleteField.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * This class is to build the form for Deleting Group
20 */
21 class CRM_Price_Form_DeleteField extends CRM_Core_Form {
22
23 /**
24 * The field id.
25 *
26 * @var int
27 */
28 protected $_fid;
29
30 /**
31 * The title of the group being deleted.
32 *
33 * @var string
34 */
35 protected $_title;
36
37 /**
38 * Set up variables to build the form.
39 *
40 * @return void
41 * @access protected
42 */
43 public function preProcess() {
44 $this->_fid = $this->get('fid');
45
46 $this->_title = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField',
47 $this->_fid,
48 'label', 'id'
49 );
50
51 $this->assign('title', $this->_title);
52
53 $this->setTitle(ts('Confirm Price Field Delete'));
54 }
55
56 /**
57 * Build the form object.
58 *
59 * @return void
60 */
61 public function buildQuickForm() {
62 $this->addButtons([
63 [
64 'type' => 'next',
65 'name' => ts('Delete Price Field'),
66 'isDefault' => TRUE,
67 ],
68 [
69 'type' => 'cancel',
70 'name' => ts('Cancel'),
71 ],
72 ]);
73 }
74
75 /**
76 * Process the form when submitted.
77 *
78 * @return void
79 */
80 public function postProcess() {
81 if (CRM_Price_BAO_PriceField::deleteField($this->_fid)) {
82 CRM_Core_Session::setStatus(ts('The Price Field \'%1\' has been deleted.', [1 => $this->_title]), '', 'success');
83 }
84 }
85
86 }