Merge pull request #13967 from eileenmcnaughton/activity_token
[civicrm-core.git] / CRM / Custom / Form / DeleteField.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class is to build the form for deleting a field
38 */
39class CRM_Custom_Form_DeleteField extends CRM_Core_Form {
40
41 /**
fe482240 42 * The group id.
6a488035
TO
43 *
44 * @var int
45 */
46 protected $_id;
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
8ef12e64 60 */
00be9182 61 public function preProcess() {
6a488035
TO
62 $this->_id = $this->get('id');
63
6a488035
TO
64 $defaults = array();
65 $params = array('id' => $this->_id);
66 CRM_Core_BAO_CustomField::retrieve($params, $defaults);
67
68 $this->_title = CRM_Utils_Array::value('label', $defaults);
5238aa83 69 $this->assign('title', $this->_title);
e2046b33 70 CRM_Utils_System::setTitle(ts('Delete %1', array(1 => $this->_title)));
6a488035
TO
71 }
72
73 /**
fe482240 74 * Build the form object.
6a488035 75 *
6a488035 76 * @return void
6a488035
TO
77 */
78 public function buildQuickForm() {
79
80 $this->addButtons(array(
81 array(
82 'type' => 'next',
83 'name' => ts('Delete Custom Field'),
84 'isDefault' => TRUE,
85 ),
86 array(
87 'type' => 'cancel',
88 'name' => ts('Cancel'),
89 ),
90 )
91 );
92 }
93
94 /**
fe482240 95 * Process the form when submitted.
6a488035 96 *
6a488035 97 * @return void
6a488035
TO
98 */
99 public function postProcess() {
100 $field = new CRM_Core_DAO_CustomField();
101 $field->id = $this->_id;
102 $field->find(TRUE);
103
104 CRM_Core_BAO_CustomField::deleteField($field);
105
106 // also delete any profiles associted with this custom field
107 CRM_Core_Session::setStatus(ts('The custom field \'%1\' has been deleted.', array(1 => $field->label)), '', 'success');
108
109 }
96025800 110
6a488035 111}