Merge branch '4.4' of https://github.com/civicrm/civicrm-core into 4.5
[civicrm-core.git] / CRM / Custom / Form / MoveField.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class is to build the form for Deleting Group
38 */
39class 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
8ef12e64 81 */
6a488035
TO
82 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 * Function to actually build the form
107 *
355ba699 108 * @return void
6a488035
TO
109 * @access public
110 */
111 public function buildQuickForm() {
112
cd43c5e3 113 $customGroup = CRM_Core_PseudoConstant::get('CRM_Core_DAO_CustomField', 'custom_group_id');
6a488035
TO
114 unset($customGroup[$this->_srcGID]);
115 if (empty($customGroup)) {
116 CRM_Core_Error::statusBounce(ts('You need more than one custom group to move fields'));
117 }
118
119 $customGroup = array(
120 '' => ts('- select -')) + $customGroup;
121 $this->add('select',
122 'dst_group_id',
123 ts('Destination'),
124 $customGroup,
125 TRUE
126 );
127
128 $this->addButtons(array(
129 array(
130 'type' => 'next',
131 'name' => ts('Move Custom Field'),
132 'isDefault' => TRUE,
133 ),
134 array(
135 'type' => 'cancel',
136 'name' => ts('Cancel'),
137 ),
138 )
139 );
140
141 $this->addFormRule(array('CRM_Custom_Form_MoveField', 'formRule'), $this);
142 }
143
e0ef6999
EM
144 /**
145 * @param $fields
146 * @param $files
147 * @param $self
148 *
149 * @return array|bool
150 */
6a488035
TO
151 static function formRule($fields, $files, $self) {
152 $self->_dstGID = $fields['dst_group_id'];
153 $tmp = CRM_Core_BAO_CustomField::_moveFieldValidate($self->_srcFID, $self->_dstGID);
154 $errors = array();
155 if ($tmp['newGroupID']) {
156 $errors['dst_group_id'] = $tmp['newGroupID'];
157 }
158 return empty($errors) ? TRUE : $errors;
159 }
160
161 /**
162 * Process the form when submitted
163 *
164 * @return void
165 * @access public
166 */
167 public function postProcess() {
168 CRM_Core_BAO_CustomField::moveField($this->_srcFID, $this->_dstGID);
169
170 $dstGroup = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup',
171 $this->_dstGID,
172 'title'
173 );
174 $srcUrl = CRM_Utils_System::url('civicrm/admin/custom/group/field', "reset=1&action=browse&gid={$this->_dstGID}");
175 CRM_Core_Session::setStatus(ts("%1 has been moved to the custom set <a href='%3'>%2</a>.",
176 array(
177 1 => $this->_srcFieldLabel,
178 2 => $dstGroup,
179 3 => $srcUrl
180 )), '', 'success');
181 }
182}
183