Merge pull request #9174 from colemanw/CRM-19448
[civicrm-core.git] / CRM / Price / Form / DeleteField.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
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
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class is to build the form for Deleting Group
38 */
39class CRM_Price_Form_DeleteField extends CRM_Core_Form {
40
41 /**
fe482240 42 * The field id.
6a488035
TO
43 *
44 * @var int
45 */
46 protected $_fid;
47
48 /**
fe482240 49 * The title of the group being deleted.
6a488035
TO
50 *
51 * @var string
52 */
53 protected $_title;
54
55 /**
fe482240 56 * Set up variables to build the form.
6a488035 57 *
6a488035 58 * @return void
b44e3f84 59 * @access protected
95ea96be 60 */
79d7553f 61 public function preProcess() {
6a488035
TO
62 $this->_fid = $this->get('fid');
63
9da8dc8c 64 $this->_title = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceField',
6a488035
TO
65 $this->_fid,
66 'label', 'id'
67 );
68
69 $this->assign('title', $this->_title);
70
71 CRM_Utils_System::setTitle(ts('Confirm Price Field Delete'));
72 }
73
74 /**
fe482240 75 * Build the form object.
6a488035 76 *
6a488035 77 * @return void
6a488035
TO
78 */
79 public function buildQuickForm() {
80 $this->addButtons(array(
c5c263ca
AH
81 array(
82 'type' => 'next',
83 'name' => ts('Delete Price Field'),
84 'isDefault' => TRUE,
85 ),
86 array(
87 'type' => 'cancel',
88 'name' => ts('Cancel'),
89 ),
90 ));
6a488035
TO
91 }
92
93 /**
fe482240 94 * Process the form when submitted.
6a488035 95 *
6a488035 96 * @return void
6a488035
TO
97 */
98 public function postProcess() {
9da8dc8c 99 if (CRM_Price_BAO_PriceField::deleteField($this->_fid)) {
6a488035
TO
100 CRM_Core_Session::setStatus(ts('The Price Field \'%1\' has been deleted.', array(1 => $this->_title)), '', 'success');
101 }
102 }
96025800 103
6a488035 104}