Merge pull request #4865 from eileenmcnaughton/my-first-factory
[civicrm-core.git] / CRM / Custom / Form / MoveField.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 (c) 2004-2014
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 * @acess 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 array(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 = array(
119 '' => ts('- select -')) + $customGroup;
120 $this->add('select',
121 'dst_group_id',
122 ts('Destination'),
123 $customGroup,
124 TRUE
125 );
126
127 $this->addButtons(array(
128 array(
129 'type' => 'next',
130 'name' => ts('Move Custom Field'),
131 'isDefault' => TRUE,
132 ),
133 array(
134 'type' => 'cancel',
135 'name' => ts('Cancel'),
136 ),
137 )
138 );
139
140 $this->addFormRule(array('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 = array();
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 array(
175 1 => $this->_srcFieldLabel,
176 2 => $dstGroup,
177 3 => $srcUrl,
178 )), '', 'success');
179 }
180 }