(NFC) (dev/core#878) Simplify '@copyright' annotation
[civicrm-core.git] / CRM / Custom / Form / MoveField.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2020 |
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 https://civicrm.org/licensing
32 * $Id$
33 *
34 */
35
36 /**
37 * This class is to build the form for Deleting Group
38 */
39 class CRM_Custom_Form_MoveField extends CRM_Core_Form {
40
41 /**
42 * The src group id.
43 *
44 * @var int
45 */
46 protected $_srcGID;
47
48 /**
49 * The src field id.
50 *
51 * @var int
52 */
53 protected $_srcFID;
54
55 /**
56 * The dst group id.
57 *
58 * @var int
59 */
60 protected $_dstGID;
61
62 /**
63 * The dst field id.
64 *
65 * @var int
66 */
67 protected $_dstFID;
68
69 /**
70 * The title of the field being moved.
71 *
72 * @var string
73 */
74 protected $_srcFieldLabel;
75
76 /**
77 * Set up variables to build the form.
78 *
79 * @return void
80 * @access protected
81 */
82 public function preProcess() {
83 $this->_srcFID = CRM_Utils_Request::retrieve('fid', 'Positive',
84 $this, TRUE
85 );
86
87 $this->_srcGID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField',
88 $this->_srcFID,
89 'custom_group_id'
90 );
91
92 $this->_srcFieldLabel = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField',
93 $this->_srcFID,
94 'label'
95 );
96
97 CRM_Utils_System::setTitle(ts('Custom Field Move: %1',
98 [1 => $this->_srcFieldLabel]
99 ));
100
101 $session = CRM_Core_Session::singleton();
102 $session->pushUserContext(CRM_Utils_System::url('civicrm/admin/custom/group/field', "reset=1&action=browse&gid={$this->_srcGID}"));
103 }
104
105 /**
106 * Build the form object.
107 *
108 * @return void
109 */
110 public function buildQuickForm() {
111
112 $customGroup = CRM_Core_PseudoConstant::get('CRM_Core_DAO_CustomField', 'custom_group_id');
113 unset($customGroup[$this->_srcGID]);
114 if (empty($customGroup)) {
115 CRM_Core_Error::statusBounce(ts('You need more than one custom group to move fields'));
116 }
117
118 $customGroup = [
119 '' => ts('- select -'),
120 ] + $customGroup;
121 $this->add('select',
122 'dst_group_id',
123 ts('Destination'),
124 $customGroup,
125 TRUE
126 );
127
128 $this->addButtons([
129 [
130 'type' => 'next',
131 'name' => ts('Move Custom Field'),
132 'isDefault' => TRUE,
133 ],
134 [
135 'type' => 'cancel',
136 'name' => ts('Cancel'),
137 ],
138 ]);
139
140 $this->addFormRule(['CRM_Custom_Form_MoveField', 'formRule'], $this);
141 }
142
143 /**
144 * @param $fields
145 * @param $files
146 * @param $self
147 *
148 * @return array|bool
149 */
150 public static function formRule($fields, $files, $self) {
151 $self->_dstGID = $fields['dst_group_id'];
152 $tmp = CRM_Core_BAO_CustomField::_moveFieldValidate($self->_srcFID, $self->_dstGID);
153 $errors = [];
154 if ($tmp['newGroupID']) {
155 $errors['dst_group_id'] = $tmp['newGroupID'];
156 }
157 return empty($errors) ? TRUE : $errors;
158 }
159
160 /**
161 * Process the form when submitted.
162 *
163 * @return void
164 */
165 public function postProcess() {
166 CRM_Core_BAO_CustomField::moveField($this->_srcFID, $this->_dstGID);
167
168 $dstGroup = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup',
169 $this->_dstGID,
170 'title'
171 );
172 $srcUrl = CRM_Utils_System::url('civicrm/admin/custom/group/field', "reset=1&action=browse&gid={$this->_dstGID}");
173 CRM_Core_Session::setStatus(ts("%1 has been moved to the custom set <a href='%3'>%2</a>.",
174 [
175 1 => $this->_srcFieldLabel,
176 2 => $dstGroup,
177 3 => $srcUrl,
178 ]), '', 'success');
179 }
180
181 }