Merge pull request #3004 from sgladstone/master
[civicrm-core.git] / CRM / Core / Form / Renderer.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
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 require_once 'HTML/QuickForm/Renderer/ArraySmarty.php';
37
38 /**
39 * customize the output to meet our specific requirements
40 */
41 class 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 /**
53 * the converter from array size to css class
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 *
72 * @access public
73 */ function __construct() {
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 */
83 static function &singleton() {
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 *
96 * @access private
97 *
98 * @param $element HTML_QuickForm_element
99 * @param $required bool - Whether an element is required
100 * @param $error string - Error associated with the element
101 *
102 * @return array
103 */
104 function _elementToArray(&$element, $required, $error) {
105 self::updateAttributes($element, $required, $error);
106
107 $el = parent::_elementToArray($element, $required, $error);
108
109 // add label html
110 if (!empty($el['label'])) {
111 $id = $element->getAttribute('id');
112 if (!empty($id)) {
113 $el['label'] = '<label for="' . $id . '">' . $el['label'] . '</label>';
114 }
115 else {
116 $el['label'] = "<label>{$el['label']}</label>";
117 }
118 }
119
120 // Display-only (frozen) elements
121 if (!empty($el['frozen'])) {
122 if ($element->getAttribute('data-api-entity') && $element->getAttribute('data-entity-value')) {
123 $this->renderFrozenEntityRef($el, $element);
124 }
125 $el['html'] = '<span class="crm-frozen-field">' . $el['html'] . '</span>';
126 }
127 // Active form elements
128 else {
129 if ($element->getType() == 'select' && $element->getAttribute('data-option-edit-path')) {
130 $this->addOptionsEditLink($el, $element);
131 }
132
133 if ($element->getType() == 'group' && $element->getAttribute('allowClear')) {
134 $this->appendUnselectButton($el, $element);
135 }
136 }
137
138 return $el;
139 }
140
141 /**
142 * Update the attributes of this element and add a few CiviCRM
143 * based attributes so we can style this form element better
144 *
145 * @access private
146 *
147 * @param $element HTML_QuickForm_element object
148 * @param $required bool Whether an element is required
149 * @param $error string Error associated with the element
150 *
151 * @return array
152 * @static
153 */
154 static function updateAttributes(&$element, $required, $error) {
155 // lets create an id for all input elements, so we can generate nice label tags
156 // to make it nice and clean, we'll just use the elementName if it is non null
157 $attributes = array();
158 if (!$element->getAttribute('id')) {
159 $name = $element->getAttribute('name');
160 if ($name) {
161 $attributes['id'] = str_replace(array(']', '['),
162 array('', '_'),
163 $name
164 );
165 }
166 }
167
168 $class = $element->getAttribute('class');
169 $type = $element->getType();
170 if (!$class) {
171 if ($type == 'text') {
172 $size = $element->getAttribute('size');
173 if (!empty($size)) {
174 $class = CRM_Utils_Array::value($size, self::$_sizeMapper);
175 }
176 }
177 }
178
179 if ($type == 'select' && $element->getAttribute('multiple')) {
180 $type = 'multiselect';
181 }
182 // Add widget-specific class
183 if (!$class || strpos($class, 'crm-form-') === FALSE) {
184 $class = ($class ? "$class " : '') . 'crm-form-' . $type;
185 }
186 elseif (strpos($class, 'crm-form-entityref') !== FALSE) {
187 self::preProcessEntityRef($element);
188 }
189
190 if ($required) {
191 $class .= ' required';
192 }
193
194 if ($error) {
195 $class .= ' error';
196 }
197
198 $attributes['class'] = $class;
199 $element->updateAttributes($attributes);
200 }
201
202 /**
203 * Convert IDs to values and format for display
204 */
205 static function preProcessEntityRef($field) {
206 $val = $field->getValue();
207 // Support array values
208 if (is_array($val)) {
209 $val = implode(',', $val);
210 $field->setValue($val);
211 }
212 if ($val) {
213 $entity = $field->getAttribute('data-api-entity');
214 $api = json_decode($field->getAttribute('data-api-params'), TRUE);
215 $params = CRM_Utils_Array::value('params', $api, array());
216 // Support serialized values
217 if (strpos($val, CRM_Core_DAO::VALUE_SEPARATOR) !== FALSE) {
218 $val = str_replace(CRM_Core_DAO::VALUE_SEPARATOR, ',', trim($val, CRM_Core_DAO::VALUE_SEPARATOR));
219 $field->setValue($val);
220 }
221 $result = civicrm_api3($entity, 'getlist', array('id' => $val, 'params' => $params));
222 if ($field->isFrozen()) {
223 $field->removeAttribute('class');
224 }
225 if (!empty($result['values'])) {
226 $field->setAttribute('data-entity-value', json_encode($result['values']));
227 }
228 }
229 }
230
231 /**
232 * Render entity references as text.
233 * If user has permission, format as link (for now limited to contacts).
234 * @param $el array
235 * @param $field HTML_QuickForm_element
236 */
237 function renderFrozenEntityRef(&$el, $field) {
238 $entity = $field->getAttribute('data-api-entity');
239 $vals = json_decode($field->getAttribute('data-entity-value'), TRUE);
240 $display = array();
241 foreach ($vals as $val) {
242 // Format contact as link
243 if ($entity == 'contact' && CRM_Contact_BAO_Contact_Permission::allow($val['id'], CRM_Core_Permission::VIEW)) {
244 $url = CRM_Utils_System::url("civicrm/contact/view", array('reset' => 1, 'cid' => $val['id']));
245 $val['label'] = '<a class="view-' . $entity . ' no-popup" href="' . $url . '" title="' . ts('View Contact') . '">' . $val['label'] . '</a>';
246 }
247 $display[] = $val['label'];
248 }
249
250 $el['html'] = implode('; ', $display) . '<input type="hidden" value="'. $field->getValue() . '" name="' . $field->getAttribute('name') . '">';
251 }
252
253 /**
254 * @param array $el
255 * @param HTML_QuickForm_element $field
256 */
257 function addOptionsEditLink(&$el, $field) {
258 if (CRM_Core_Permission::check('administer CiviCRM')) {
259 // NOTE: $path is used on the client-side to know which option lists need rebuilding,
260 // that's why we need that bit of data both in the link and in the form element
261 $path = $field->getAttribute('data-option-edit-path');
262 // NOTE: If we ever needed to support arguments in this link other than reset=1 we could split $path here if it contains a ?
263 $url = CRM_Utils_System::url($path, 'reset=1');
264 $el['html'] .= ' <a href="' . $url . '" class="crm-option-edit-link crm-hover-button" target="_blank" title="' . ts('Edit Options') . '" data-option-edit-path="' . $path . '"><span class="icon edit-icon"></span></a>';
265 }
266 }
267
268 /**
269 * @param array $el
270 * @param HTML_QuickForm_element $field
271 */
272 function appendUnselectButton(&$el, $field) {
273 // Initially hide if not needed
274 // Note: visibility:hidden prevents layout jumping around unlike display:none
275 $display = $field->getValue() !== NULL ? '' : ' style="visibility:hidden;"';
276 $el['html'] .= ' <a href="#" class="crm-hover-button crm-clear-link"' . $display . ' title="' . ts('Clear') . '"><span class="icon close-icon"></span></a>';
277 }
278 }
279