Merge pull request #17163 from jitendrapurohit/core-1731
[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 * $Id$
17 *
18 */
19
20 /**
21 * This class is to build the form for Deleting Group
22 */
23 class CRM_Price_Form_DeleteField extends CRM_Core_Form {
24
25 /**
26 * The field id.
27 *
28 * @var int
29 */
30 protected $_fid;
31
32 /**
33 * The title of the group being deleted.
34 *
35 * @var string
36 */
37 protected $_title;
38
39 /**
40 * Set up variables to build the form.
41 *
42 * @return void
43 * @access protected
44 */
45 public function preProcess() {
46 $this->_fid = $this->get('fid');
47
48 $this->_title = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField',
49 $this->_fid,
50 'label', 'id'
51 );
52
53 $this->assign('title', $this->_title);
54
55 CRM_Utils_System::setTitle(ts('Confirm Price Field Delete'));
56 }
57
58 /**
59 * Build the form object.
60 *
61 * @return void
62 */
63 public function buildQuickForm() {
64 $this->addButtons([
65 [
66 'type' => 'next',
67 'name' => ts('Delete Price Field'),
68 'isDefault' => TRUE,
69 ],
70 [
71 'type' => 'cancel',
72 'name' => ts('Cancel'),
73 ],
74 ]);
75 }
76
77 /**
78 * Process the form when submitted.
79 *
80 * @return void
81 */
82 public function postProcess() {
83 if (CRM_Price_BAO_PriceField::deleteField($this->_fid)) {
84 CRM_Core_Session::setStatus(ts('The Price Field \'%1\' has been deleted.', [1 => $this->_title]), '', 'success');
85 }
86 }
87
88 }