remove trailing whitespaces
[civicrm-core.git] / CRM / Custom / Form / MoveField.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
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
81 */
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 *
108 * @return None
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
144 static function formRule($fields, $files, $self) {
145 $self->_dstGID = $fields['dst_group_id'];
146 $tmp = CRM_Core_BAO_CustomField::_moveFieldValidate($self->_srcFID, $self->_dstGID);
147 $errors = array();
148 if ($tmp['newGroupID']) {
149 $errors['dst_group_id'] = $tmp['newGroupID'];
150 }
151 return empty($errors) ? TRUE : $errors;
152 }
153
154 /**
155 * Process the form when submitted
156 *
157 * @return void
158 * @access public
159 */
160 public function postProcess() {
161 CRM_Core_BAO_CustomField::moveField($this->_srcFID, $this->_dstGID);
162
163 $dstGroup = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup',
164 $this->_dstGID,
165 'title'
166 );
167 $srcUrl = CRM_Utils_System::url('civicrm/admin/custom/group/field', "reset=1&action=browse&gid={$this->_dstGID}");
168 CRM_Core_Session::setStatus(ts("%1 has been moved to the custom set <a href='%3'>%2</a>.",
169 array(
170 1 => $this->_srcFieldLabel,
171 2 => $dstGroup,
172 3 => $srcUrl
173 )), '', 'success');
174 }
175}
176