Update copyright date for 2020
[civicrm-core.git] / CRM / Custom / Page / Option.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 (c) 2004-2020
32 * $Id$
33 *
34 */
35
36 /**
37 * Create a page for displaying Custom Options.
38 *
39 * Heart of this class is the run method which checks
40 * for action type and then displays the appropriate
41 * page.
42 *
43 */
44 class CRM_Custom_Page_Option extends CRM_Core_Page {
45
46 public $useLivePageJS = TRUE;
47
48 /**
49 * The Group id of the option
50 *
51 * @var int
52 */
53 protected $_gid;
54
55 /**
56 * The field id of the option
57 *
58 * @var int
59 */
60 protected $_fid;
61
62 /**
63 * The action links that we need to display for the browse screen
64 *
65 * @var array
66 */
67 private static $_actionLinks;
68
69 /**
70 * Get the action links for this page.
71 *
72 * @return array
73 * array of action links that we need to display for the browse screen
74 */
75 public static function &actionLinks() {
76 if (!isset(self::$_actionLinks)) {
77 self::$_actionLinks = [
78 CRM_Core_Action::UPDATE => [
79 'name' => ts('Edit Option'),
80 'url' => 'civicrm/admin/custom/group/field/option',
81 'qs' => 'reset=1&action=update&id=%%id%%&fid=%%fid%%&gid=%%gid%%',
82 'title' => ts('Edit Multiple Choice Option'),
83 ],
84 CRM_Core_Action::VIEW => [
85 'name' => ts('View'),
86 'url' => 'civicrm/admin/custom/group/field/option',
87 'qs' => 'action=view&id=%%id%%&fid=%%fid%%',
88 'title' => ts('View Multiple Choice Option'),
89 ],
90 CRM_Core_Action::DISABLE => [
91 'name' => ts('Disable'),
92 'ref' => 'crm-enable-disable',
93 'title' => ts('Disable Multiple Choice Option'),
94 ],
95 CRM_Core_Action::ENABLE => [
96 'name' => ts('Enable'),
97 'ref' => 'crm-enable-disable',
98 'title' => ts('Enable Multiple Choice Option'),
99 ],
100 CRM_Core_Action::DELETE => [
101 'name' => ts('Delete'),
102 'url' => 'civicrm/admin/custom/group/field/option',
103 'qs' => 'action=delete&id=%%id%%&fid=%%fid%%',
104 'title' => ts('Delete Multiple Choice Option'),
105 ],
106 ];
107 }
108 return self::$_actionLinks;
109 }
110
111 /**
112 * Alphabetize multiple option values
113 *
114 * @return void
115 */
116 public function alphabetize() {
117 $optionGroupID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField',
118 $this->_fid,
119 'option_group_id'
120 );
121 $query = "
122 SELECT id, label
123 FROM civicrm_option_value
124 WHERE option_group_id = %1";
125 $params = [
126 1 => [$optionGroupID, 'Integer'],
127 ];
128 $dao = CRM_Core_DAO::executeQuery($query, $params);
129 $optionValue = [];
130 while ($dao->fetch()) {
131 $optionValue[$dao->id] = $dao->label;
132 }
133 asort($optionValue, SORT_STRING | SORT_FLAG_CASE | SORT_NATURAL);
134
135 $i = 1;
136 foreach ($optionValue as $key => $_) {
137 $clause[] = "WHEN $key THEN $i";
138 $i++;
139 }
140
141 $when = implode(' ', $clause);
142 $sql = "
143 UPDATE civicrm_option_value
144 SET weight = CASE id
145 $when
146 END
147 WHERE option_group_id = %1";
148
149 $dao = CRM_Core_DAO::executeQuery($sql, $params);
150 }
151
152 /**
153 * Browse all custom group fields.
154 *
155 * @return void
156 */
157 public function browse() {
158
159 // get the option group id
160 $optionGroupID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField',
161 $this->_fid,
162 'option_group_id'
163 );
164
165 $query = "
166 SELECT id, label
167 FROM civicrm_custom_field
168 WHERE option_group_id = %1";
169 $params = [
170 1 => [$optionGroupID, 'Integer'],
171 2 => [$this->_fid, 'Integer'],
172 ];
173 $dao = CRM_Core_DAO::executeQuery($query, $params);
174 $reusedNames = [];
175 if ($dao->N > 1) {
176 while ($dao->fetch()) {
177 $reusedNames[] = $dao->label;
178 }
179 $reusedNames = implode(', ', $reusedNames);
180 $newTitle = ts('%1 - Multiple Choice Options',
181 [1 => $reusedNames]
182 );
183 CRM_Utils_System::setTitle($newTitle);
184 $this->assign('reusedNames', $reusedNames);
185 }
186 $this->assign('optionGroupID', $optionGroupID);
187 }
188
189 /**
190 * Edit custom Option.
191 *
192 * editing would involved modifying existing fields + adding data to new fields.
193 *
194 * @param string $action
195 * The action to be invoked.
196 *
197 * @return void
198 */
199 public function edit($action) {
200 // create a simple controller for editing custom data
201 $controller = new CRM_Core_Controller_Simple('CRM_Custom_Form_Option', ts('Custom Option'), $action);
202
203 // set the userContext stack
204 $session = CRM_Core_Session::singleton();
205 $session->pushUserContext(CRM_Utils_System::url('civicrm/admin/custom/group/field/option',
206 "reset=1&action=browse&fid={$this->_fid}&gid={$this->_gid}"
207 ));
208 $controller->setEmbedded(TRUE);
209 $controller->process();
210 $controller->run();
211 }
212
213 /**
214 * Run the page.
215 *
216 * This method is called after the page is created. It checks for the
217 * type of action and executes that action.
218 *
219 * @return void
220 */
221 public function run() {
222
223 // get the field id
224 $this->_fid = CRM_Utils_Request::retrieve('fid', 'Positive',
225 $this, FALSE, 0
226 );
227 $this->_gid = CRM_Utils_Request::retrieve('gid', 'Positive',
228 $this, FALSE, 0
229 );
230
231 if ($isReserved = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup', $this->_gid, 'is_reserved', 'id')) {
232 CRM_Core_Error::fatal("You cannot add or edit multiple choice options in a reserved custom field-set.");
233 }
234
235 $optionGroupId = $this->getOptionGroupId($this->_fid);
236 $isOptionGroupLocked = $optionGroupId ? $this->isOptionGroupLocked($optionGroupId) : FALSE;
237 $this->assign('optionGroupId', $optionGroupId);
238 $this->assign('isOptionGroupLocked', $isOptionGroupLocked);
239
240 //as url contain $gid so append breadcrumb dynamically.
241 $breadcrumb = [
242 [
243 'title' => ts('Custom Data Fields'),
244 'url' => CRM_Utils_System::url('civicrm/admin/custom/group/field', 'reset=1&gid=' . $this->_gid),
245 ],
246 ];
247 CRM_Utils_System::appendBreadCrumb($breadcrumb);
248
249 if ($this->_fid) {
250 $fieldTitle = CRM_Core_BAO_CustomField::getTitle($this->_fid);
251 $this->assign('fid', $this->_fid);
252 $this->assign('gid', $this->_gid);
253 $this->assign('fieldTitle', $fieldTitle);
254 CRM_Utils_System::setTitle(ts('%1 - Multiple Choice Options', [1 => $fieldTitle]));
255 }
256
257 // get the requested action
258 $action = CRM_Utils_Request::retrieve('action', 'String',
259 // default to 'browse'
260 $this, FALSE, 'browse'
261 );
262
263 // assign vars to templates
264 $this->assign('action', $action);
265
266 $id = CRM_Utils_Request::retrieve('id', 'Positive',
267 $this, FALSE, 0
268 );
269
270 // take action in addition to default browse ?
271 if (($action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD |
272 CRM_Core_Action::VIEW | CRM_Core_Action::DELETE
273 )
274 ) ||
275 !empty($_POST)
276 ) {
277 // no browse for edit/update/view
278 $this->edit($action);
279 }
280 elseif ($action & CRM_Core_Action::MAP) {
281 $this->alphabetize();
282 }
283 $this->browse();
284
285 // Call the parents run method
286 return parent::run();
287 }
288
289 /**
290 * Gets the "is_locked" status for the provided option group
291 *
292 * @param int $optionGroupId
293 *
294 * @return bool
295 */
296 private function isOptionGroupLocked($optionGroupId) {
297 return (bool) CRM_Core_DAO::getFieldValue(
298 CRM_Core_DAO_OptionGroup::class,
299 $optionGroupId,
300 'is_locked'
301 );
302 }
303
304 /**
305 * Gets the associated "option_group_id" for a custom field
306 *
307 * @param int $customFieldId
308 *
309 * @return int
310 */
311 private function getOptionGroupId($customFieldId) {
312 return (int) CRM_Core_DAO::getFieldValue(
313 CRM_Core_DAO_CustomField::class,
314 $customFieldId,
315 'option_group_id'
316 );
317 }
318
319 }