Merge pull request #2514 from colemanw/ac2
[civicrm-core.git] / CRM / Core / Form / Renderer.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
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 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-params') && $element->getAttribute('data-entity-value')) {
123 $this->renderFrozenEntityRef($el, $element);
124 }
125 $el['html'] = '<div class="crm-frozen-field">' . $el['html'] . '</div>';
126 }
127 // Active form elements
128 else {
129 if ($element->getType() == 'select' && $element->getAttribute('data-option-group-url')) {
130 $this->addOptionsEditLink($el, $element);
131 }
132
133 if ($element->getType() == 'group' && $element->getAttribute('unselectable')) {
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
187 if ($required) {
188 $class .= ' required';
189 }
190
191 if ($error) {
192 $class .= ' error';
193 }
194
195 $attributes['class'] = $class;
196 $element->updateAttributes($attributes);
197 }
198
199 /**
200 * Render entity references as text.
201 * If user has permission, format as link (or now limited to contacts).
202 * @param $el array
203 * @param $field HTML_QuickForm_element
204 */
205 function renderFrozenEntityRef(&$el, $field) {
206 $api = json_decode($field->getAttribute('data-api-params'), TRUE);
207 $vals = json_decode($field->getAttribute('data-entity-value'), TRUE);
208 if (isset($vals['id'])) {
209 $vals = array($vals);
210 }
211 $display = array();
212 foreach ($vals as $val) {
213 // Format contact as link
214 if ($api['entity'] == 'contact' && CRM_Contact_BAO_Contact_Permission::allow($val['id'], CRM_Core_Permission::VIEW)) {
215 $url = CRM_Utils_System::url("civicrm/contact/view", array('reset' => 1, 'cid' => $val['id']));
216 $val['text'] = '<a href="' . $url . '" title="' . ts('View Contact') . '">' . $val['text'] . '</a>';
217 }
218 $display[] = $val['text'];
219 }
220
221 $el['html'] = implode('; ', $display) . '<input type="hidden" value="'. $field->getValue() . '" name="' . $field->getAttribute('name') . '">';
222 }
223
224 /**
225 * @param array $el
226 * @param HTML_QuickForm_element $field
227 */
228 function addOptionsEditLink(&$el, $field) {
229 if (CRM_Core_Permission::check('administer CiviCRM')) {
230 $el['html'] .= ' <a href="#" class="crm-edit-optionvalue-link crm-hover-button" title="' . ts('Edit Options') . '" data-option-group-url="' . $field->getAttribute('data-option-group-url') . '"><span class="icon edit-icon"></span></a>';
231 }
232 }
233
234 /**
235 * @param array $el
236 * @param HTML_QuickForm_element $field
237 */
238 function appendUnselectButton(&$el, $field) {
239 // Initially hide if not needed
240 // Note: visibility:hidden prevents layout jumping around unlike display:none
241 $display = $field->getValue() !== NULL ? '' : ' style="visibility:hidden;"';
242 $el['html'] .= ' <a href="#" class="crm-hover-button crm-clear-link"' . $display . ' title="' . ts('Clear') . '"><span class="icon close-icon"></span></a>';
243 }
244 }
245