Merge pull request #4882 from colemanw/CRM-15789
[civicrm-core.git] / CRM / Core / Form / Renderer.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
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
36require_once 'HTML/QuickForm/Renderer/ArraySmarty.php';
37
38/**
39 * customize the output to meet our specific requirements
40 */
41class CRM_Core_Form_Renderer extends HTML_QuickForm_Renderer_ArraySmarty {
42
43 /**
44 * We only need one instance of this object. So we use the singleton
45 * pattern and cache the instance in this variable
46 *
47 * @var object
48 * @static
49 */
50 static private $_singleton = NULL;
51
52 /**
100fef9d 53 * The converter from array size to css class
6a488035
TO
54 *
55 * @var array
56 * @static
57 */
58 static $_sizeMapper = array(
59 2 => 'two',
60 4 => 'four',
61 6 => 'six',
62 8 => 'eight',
63 12 => 'twelve',
64 20 => 'medium',
65 30 => 'big',
66 45 => 'huge',
67 );
68
69 /**
70 * Constructor
71 *
95ea96be
EM
72 */
73 function __construct() {
6a488035
TO
74 $template = CRM_Core_Smarty::singleton();
75 parent::__construct($template);
76 }
77
78 /**
79 * Static instance provider.
80 *
81 * Method providing static instance of as in Singleton pattern.
82 */
00be9182 83 public static function &singleton() {
6a488035
TO
84 if (!isset(self::$_singleton)) {
85 self::$_singleton = new CRM_Core_Form_Renderer();
86 }
87 return self::$_singleton;
88 }
89
90 /**
91 * Creates an array representing an element containing
92 * the key for storing this. We allow the parent to do most of the
93 * work, but then we add some CiviCRM specific enhancements to
94 * make the html compliant with our css etc
95 *
6a488035 96 *
6a0b768e
TO
97 * @param $element
98 * HTML_QuickForm_element.
99 * @param $required
100 * Bool - Whether an element is required.
101 * @param $error
102 * String - Error associated with the element.
6a488035
TO
103 *
104 * @return array
105 */
00be9182 106 public function _elementToArray(&$element, $required, $error) {
6a488035
TO
107 self::updateAttributes($element, $required, $error);
108
109 $el = parent::_elementToArray($element, $required, $error);
110
111 // add label html
112 if (!empty($el['label'])) {
113 $id = $element->getAttribute('id');
114 if (!empty($id)) {
115 $el['label'] = '<label for="' . $id . '">' . $el['label'] . '</label>';
116 }
117 else {
118 $el['label'] = "<label>{$el['label']}</label>";
119 }
120 }
121
4a143c04 122 // Display-only (frozen) elements
704d3260 123 if (!empty($el['frozen'])) {
549be786 124 if ($element->getAttribute('data-api-entity') && $element->getAttribute('data-entity-value')) {
704d3260
CW
125 $this->renderFrozenEntityRef($el, $element);
126 }
f0366d0b 127 $el['html'] = '<span class="crm-frozen-field">' . $el['html'] . '</span>';
704d3260 128 }
4a143c04
CW
129 // Active form elements
130 else {
87831073 131 if ($element->getType() == 'select' && $element->getAttribute('data-option-edit-path')) {
4a143c04
CW
132 $this->addOptionsEditLink($el, $element);
133 }
134
b847e6e7 135 if ($element->getType() == 'group' && $element->getAttribute('allowClear')) {
4a143c04
CW
136 $this->appendUnselectButton($el, $element);
137 }
138 }
704d3260 139
6a488035
TO
140 return $el;
141 }
142
143 /**
144 * Update the attributes of this element and add a few CiviCRM
145 * based attributes so we can style this form element better
146 *
6a488035 147 *
6a0b768e
TO
148 * @param $element
149 * HTML_QuickForm_element object.
150 * @param $required
151 * Bool Whether an element is required.
152 * @param $error
153 * String Error associated with the element.
6a488035
TO
154 *
155 * @return array
156 * @static
157 */
00be9182 158 public static function updateAttributes(&$element, $required, $error) {
6a488035
TO
159 // lets create an id for all input elements, so we can generate nice label tags
160 // to make it nice and clean, we'll just use the elementName if it is non null
161 $attributes = array();
162 if (!$element->getAttribute('id')) {
163 $name = $element->getAttribute('name');
164 if ($name) {
165 $attributes['id'] = str_replace(array(']', '['),
166 array('', '_'),
167 $name
168 );
169 }
170 }
171
172 $class = $element->getAttribute('class');
173 $type = $element->getType();
c5b53a6f 174 if (!$class) {
6a488035
TO
175 if ($type == 'text') {
176 $size = $element->getAttribute('size');
177 if (!empty($size)) {
dafd2d75 178 $class = CRM_Utils_Array::value($size, self::$_sizeMapper);
6a488035
TO
179 }
180 }
181 }
182
4f95329c
CW
183 if ($type == 'select' && $element->getAttribute('multiple')) {
184 $type = 'multiselect';
185 }
76ec9ca7
CW
186 // Add widget-specific class
187 if (!$class || strpos($class, 'crm-form-') === FALSE) {
188 $class = ($class ? "$class " : '') . 'crm-form-' . $type;
189 }
75f59466
CW
190 elseif (strpos($class, 'crm-form-entityref') !== FALSE) {
191 self::preProcessEntityRef($element);
192 }
06508628
CW
193 elseif (strpos($class, 'crm-form-contact-reference') !== FALSE) {
194 self::preprocessContactReference($element);
195 }
c5b53a6f 196
6a488035
TO
197 if ($required) {
198 $class .= ' required';
199 }
200
201 if ($error) {
202 $class .= ' error';
203 }
204
205 $attributes['class'] = $class;
206 $element->updateAttributes($attributes);
207 }
704d3260 208
75f59466
CW
209 /**
210 * Convert IDs to values and format for display
06508628 211 *
6a0b768e
TO
212 * @param $field
213 * HTML_QuickForm_element.
75f59466 214 */
00be9182 215 public static function preProcessEntityRef($field) {
75f59466
CW
216 $val = $field->getValue();
217 // Support array values
218 if (is_array($val)) {
219 $val = implode(',', $val);
220 $field->setValue($val);
221 }
222 if ($val) {
223 $entity = $field->getAttribute('data-api-entity');
e6d37e50
CW
224 // Get api params, ensure it is an array
225 $params = $field->getAttribute('data-api-params');
226 $params = $params ? json_decode($params, TRUE) : array();
75f59466
CW
227 // Support serialized values
228 if (strpos($val, CRM_Core_DAO::VALUE_SEPARATOR) !== FALSE) {
229 $val = str_replace(CRM_Core_DAO::VALUE_SEPARATOR, ',', trim($val, CRM_Core_DAO::VALUE_SEPARATOR));
230 $field->setValue($val);
231 }
61d869af 232 $result = civicrm_api3($entity, 'getlist', array('id' => $val) + $params);
75f59466
CW
233 if ($field->isFrozen()) {
234 $field->removeAttribute('class');
235 }
236 if (!empty($result['values'])) {
75f59466
CW
237 $field->setAttribute('data-entity-value', json_encode($result['values']));
238 }
239 }
240 }
241
704d3260
CW
242 /**
243 * Render entity references as text.
b56fec55 244 * If user has permission, format as link (for now limited to contacts).
6a0b768e
TO
245 * @param $el
246 * Array.
247 * @param $field
248 * HTML_QuickForm_element.
704d3260 249 */
00be9182 250 public function renderFrozenEntityRef(&$el, $field) {
549be786 251 $entity = $field->getAttribute('data-api-entity');
704d3260 252 $vals = json_decode($field->getAttribute('data-entity-value'), TRUE);
704d3260 253 $display = array();
a9b69e9f
CW
254
255 // Custom fields of type contactRef store their data in a slightly different format
256 if ($field->getAttribute('data-crm-custom') && $entity == 'contact') {
257 $vals = array(array('id' => $vals['id'], 'label' => $vals['text']));
258 }
259
704d3260
CW
260 foreach ($vals as $val) {
261 // Format contact as link
549be786 262 if ($entity == 'contact' && CRM_Contact_BAO_Contact_Permission::allow($val['id'], CRM_Core_Permission::VIEW)) {
704d3260 263 $url = CRM_Utils_System::url("civicrm/contact/view", array('reset' => 1, 'cid' => $val['id']));
b56fec55 264 $val['label'] = '<a class="view-' . $entity . ' no-popup" href="' . $url . '" title="' . ts('View Contact') . '">' . $val['label'] . '</a>';
704d3260 265 }
549be786 266 $display[] = $val['label'];
704d3260
CW
267 }
268
86bfa4f6 269 $el['html'] = implode('; ', $display) . '<input type="hidden" value="' . $field->getValue() . '" name="' . $field->getAttribute('name') . '">';
704d3260 270 }
5fafc9b0 271
06508628
CW
272 /**
273 * Pre-fill contact name for a custom field of type ContactReference
274 *
275 * Todo: Migrate contact reference fields to use EntityRef
276 *
6a0b768e
TO
277 * @param $field
278 * HTML_QuickForm_element.
06508628 279 */
00be9182 280 public static function preprocessContactReference($field) {
06508628
CW
281 $val = $field->getValue();
282 if ($val && is_numeric($val)) {
283
284 $list = array_keys(CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
285 'contact_reference_options'
286 ), '1');
287
288 $return = array_unique(array_merge(array('sort_name'), $list));
289
290 $contact = civicrm_api('contact', 'getsingle', array('id' => $val, 'return' => $return, 'version' => 3));
291
292 if (!empty($contact['id'])) {
293 $view = array();
294 foreach ($return as $fld) {
295 if (!empty($contact[$fld])) {
296 $view[] = $contact[$fld];
297 }
298 }
299 $field->setAttribute('data-entity-value', json_encode(array('id' => $contact['id'], 'text' => implode(' :: ', $view))));
300 }
301 }
302 }
303
5fafc9b0
CW
304 /**
305 * @param array $el
306 * @param HTML_QuickForm_element $field
307 */
00be9182 308 public function addOptionsEditLink(&$el, $field) {
5fafc9b0 309 if (CRM_Core_Permission::check('administer CiviCRM')) {
87831073
CW
310 // NOTE: $path is used on the client-side to know which option lists need rebuilding,
311 // that's why we need that bit of data both in the link and in the form element
312 $path = $field->getAttribute('data-option-edit-path');
313 // NOTE: If we ever needed to support arguments in this link other than reset=1 we could split $path here if it contains a ?
314 $url = CRM_Utils_System::url($path, 'reset=1');
5ce7d22c 315 $el['html'] .= ' <a href="' . $url . '" class="crm-option-edit-link medium-popup crm-hover-button" target="_blank" title="' . ts('Edit Options') . '" data-option-edit-path="' . $path . '"><span class="icon ui-icon-wrench"></span></a>';
5fafc9b0
CW
316 }
317 }
4a143c04
CW
318
319 /**
320 * @param array $el
321 * @param HTML_QuickForm_element $field
322 */
00be9182 323 public function appendUnselectButton(&$el, $field) {
4a143c04
CW
324 // Initially hide if not needed
325 // Note: visibility:hidden prevents layout jumping around unlike display:none
8a4f27dc 326 $display = $field->getValue() !== NULL ? '' : ' style="visibility:hidden;"';
52604b19 327 $el['html'] .= ' <a href="#" class="crm-hover-button crm-clear-link"' . $display . ' title="' . ts('Clear') . '"><span class="icon ui-icon-close"></span></a>';
4a143c04 328 }
6a488035 329}