blob: a3d299b0d6e74d74f084b25a784c0ee42868b08a [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreev8bf6bb62012-01-06 16:11:04 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev8bf6bb62012-01-06 16:11:04 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Derek Allard2067d1a2008-11-13 22:59:24 +000019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
Andrey Andreev80500af2013-01-01 08:16:53 +020021 * @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
Andrey Andreevc5536aa2012-11-01 17:33:58 +020025 * @filesource
Derek Allard2067d1a2008-11-13 22:59:24 +000026 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029/**
30 * CodeIgniter Form Helpers
31 *
32 * @package CodeIgniter
33 * @subpackage Helpers
34 * @category Helpers
Derek Jonesf4a4bd82011-10-20 12:18:42 -050035 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000036 * @link http://codeigniter.com/user_guide/helpers/form_helper.html
37 */
38
39// ------------------------------------------------------------------------
40
Derek Allard2067d1a2008-11-13 22:59:24 +000041if ( ! function_exists('form_open'))
42{
Timothy Warren01b129a2012-04-27 11:36:50 -040043 /**
44 * Form Declaration
45 *
46 * Creates the opening portion of the form.
47 *
48 * @param string the URI segments of the form destination
49 * @param array a key/value pair of attributes
50 * @param array a key/value pair hidden data
51 * @return string
52 */
vlakoffea19bc42013-07-27 10:07:43 +020053 function form_open($action = '', $attributes = array(), $hidden = array())
Derek Allard2067d1a2008-11-13 22:59:24 +000054 {
55 $CI =& get_instance();
56
vlakoffc4f9c622013-07-27 10:08:00 +020057 // If an action is not a full URL then turn it into one
58 if ($action && strpos($action, '://') === FALSE)
59 {
60 $action = $CI->config->site_url($action);
61 }
62 elseif ( ! $action)
63 {
64 // If no action is provided then set to the current url
65 $action = $CI->config->site_url($CI->uri->uri_string());
66 }
67
vlakoffea19bc42013-07-27 10:07:43 +020068 $attributes = _attributes_to_string($attributes);
69
70 if (stripos($attributes, 'method=') === FALSE)
Andrey Andreev122ca9b2013-07-26 18:16:26 +030071 {
72 $attributes .= ' method="post"';
73 }
Derek Allard2067d1a2008-11-13 22:59:24 +000074
vlakoffea19bc42013-07-27 10:07:43 +020075 if (stripos($attributes, 'accept-charset=') === FALSE)
76 {
77 $attributes .= ' accept-charset="'.strtolower(config_item('charset')).'"';
78 }
79
vlakoffea19bc42013-07-27 10:07:43 +020080 $form = '<form action="'.$action.'"'.$attributes.">\n";
Barry Mienydd671972010-10-04 16:33:58 +020081
Andrey Andreev93a83c72012-03-26 21:24:02 +030082 // Add CSRF field if enabled, but leave it out for GET requests and requests to external websites
Andrey Andreev122ca9b2013-07-26 18:16:26 +030083 if ($CI->config->item('csrf_protection') === TRUE && ! (strpos($action, $CI->config->base_url()) === FALSE OR stripos($form, 'method="get"')))
Derek Allard958543a2010-07-22 14:10:26 -040084 {
Greg Aker1f6f0ab2011-04-07 18:24:53 -050085 $hidden[$CI->security->get_csrf_token_name()] = $CI->security->get_csrf_hash();
Greg Aker28b425a2010-09-15 11:43:23 -050086 }
87
Andrey Andreev93a83c72012-03-26 21:24:02 +030088 if (is_array($hidden) && count($hidden) > 0)
Greg Aker28b425a2010-09-15 11:43:23 -050089 {
Andrey Andreev3c32a112012-06-16 18:05:34 +030090 $form .= '<div style="display:none;">'.form_hidden($hidden).'</div>';
Derek Allard958543a2010-07-22 14:10:26 -040091 }
92
Derek Allard2067d1a2008-11-13 22:59:24 +000093 return $form;
94 }
95}
96
97// ------------------------------------------------------------------------
98
Derek Allard2067d1a2008-11-13 22:59:24 +000099if ( ! function_exists('form_open_multipart'))
100{
Timothy Warren01b129a2012-04-27 11:36:50 -0400101 /**
102 * Form Declaration - Multipart type
103 *
104 * Creates the opening portion of the form, but with "multipart/form-data".
105 *
106 * @param string the URI segments of the form destination
107 * @param array a key/value pair of attributes
108 * @param array a key/value pair hidden data
109 * @return string
110 */
Ben Edmunds98963b32011-08-20 14:17:16 -0500111 function form_open_multipart($action = '', $attributes = array(), $hidden = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000112 {
Derek Allard33d4b6a2010-01-17 07:23:00 +0000113 if (is_string($attributes))
114 {
115 $attributes .= ' enctype="multipart/form-data"';
116 }
117 else
118 {
119 $attributes['enctype'] = 'multipart/form-data';
120 }
121
Derek Allard2067d1a2008-11-13 22:59:24 +0000122 return form_open($action, $attributes, $hidden);
123 }
124}
125
126// ------------------------------------------------------------------------
127
Derek Allard2067d1a2008-11-13 22:59:24 +0000128if ( ! function_exists('form_hidden'))
129{
Timothy Warren01b129a2012-04-27 11:36:50 -0400130 /**
131 * Hidden Input Field
132 *
133 * Generates hidden fields. You can pass a simple key/value string or
134 * an associative array with multiple values.
135 *
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200136 * @param mixed $name Field name
137 * @param string $value Field value
138 * @param bool $recursing
Timothy Warren01b129a2012-04-27 11:36:50 -0400139 * @return string
140 */
Robin Sowell57fe4102009-03-26 18:58:46 +0000141 function form_hidden($name, $value = '', $recursing = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000142 {
Robin Sowell57fe4102009-03-26 18:58:46 +0000143 static $form;
144
145 if ($recursing === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000146 {
Robin Sowell57fe4102009-03-26 18:58:46 +0000147 $form = "\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000148 }
149
Robin Sowell57fe4102009-03-26 18:58:46 +0000150 if (is_array($name))
Derek Allard2067d1a2008-11-13 22:59:24 +0000151 {
Robin Sowell57fe4102009-03-26 18:58:46 +0000152 foreach ($name as $key => $val)
153 {
154 form_hidden($key, $val, TRUE);
155 }
156 return $form;
157 }
158
159 if ( ! is_array($value))
160 {
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200161 $form .= '<input type="hidden" name="'.$name.'" value="'.form_prep($value)."\" />\n";
Robin Sowell57fe4102009-03-26 18:58:46 +0000162 }
163 else
164 {
165 foreach ($value as $k => $v)
166 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300167 $k = is_int($k) ? '' : $k;
Robin Sowell57fe4102009-03-26 18:58:46 +0000168 form_hidden($name.'['.$k.']', $v, TRUE);
169 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000170 }
171
172 return $form;
173 }
174}
175
176// ------------------------------------------------------------------------
177
Derek Allard2067d1a2008-11-13 22:59:24 +0000178if ( ! function_exists('form_input'))
179{
Timothy Warren01b129a2012-04-27 11:36:50 -0400180 /**
181 * Text Input Field
182 *
183 * @param mixed
184 * @param string
185 * @param string
186 * @return string
187 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000188 function form_input($data = '', $value = '', $extra = '')
189 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300190 $defaults = array('type' => 'text', 'name' => ( ! is_array($data) ? $data : ''), 'value' => $value);
Derek Allard2067d1a2008-11-13 22:59:24 +0000191
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200192 return '<input '._parse_form_attributes($data, $defaults).$extra." />\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000193 }
194}
195
196// ------------------------------------------------------------------------
197
Derek Allard2067d1a2008-11-13 22:59:24 +0000198if ( ! function_exists('form_password'))
199{
Timothy Warren01b129a2012-04-27 11:36:50 -0400200 /**
201 * Password Field
202 *
203 * Identical to the input function but adds the "password" type
204 *
205 * @param mixed
206 * @param string
207 * @param string
208 * @return string
209 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000210 function form_password($data = '', $value = '', $extra = '')
211 {
212 if ( ! is_array($data))
213 {
214 $data = array('name' => $data);
215 }
216
217 $data['type'] = 'password';
218 return form_input($data, $value, $extra);
219 }
220}
221
222// ------------------------------------------------------------------------
223
Derek Allard2067d1a2008-11-13 22:59:24 +0000224if ( ! function_exists('form_upload'))
225{
Timothy Warren01b129a2012-04-27 11:36:50 -0400226 /**
227 * Upload Field
228 *
229 * Identical to the input function but adds the "file" type
230 *
231 * @param mixed
232 * @param string
233 * @param string
234 * @return string
235 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000236 function form_upload($data = '', $value = '', $extra = '')
237 {
Bo-Yi Wu06ddcf02013-02-18 08:52:05 +0800238 $defaults = array('type' => 'file', 'name' => '');
Andrey Andreev99ba3a22013-02-15 22:42:22 +0200239 is_array($data) OR $data = array('name' => $data);
Derek Allard2067d1a2008-11-13 22:59:24 +0000240 $data['type'] = 'file';
Andrey Andreev99ba3a22013-02-15 22:42:22 +0200241 return '<input '._parse_form_attributes($data, $defaults).$extra." />\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000242 }
243}
244
245// ------------------------------------------------------------------------
246
Derek Allard2067d1a2008-11-13 22:59:24 +0000247if ( ! function_exists('form_textarea'))
248{
Timothy Warren01b129a2012-04-27 11:36:50 -0400249 /**
250 * Textarea field
251 *
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200252 * @param mixed $data
253 * @param string $value
254 * @param string $extra
Timothy Warren01b129a2012-04-27 11:36:50 -0400255 * @return string
256 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000257 function form_textarea($data = '', $value = '', $extra = '')
258 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300259 $defaults = array('name' => ( ! is_array($data) ? $data : ''), 'cols' => '40', 'rows' => '10');
Derek Allard2067d1a2008-11-13 22:59:24 +0000260
261 if ( ! is_array($data) OR ! isset($data['value']))
262 {
263 $val = $value;
264 }
265 else
266 {
Barry Mienydd671972010-10-04 16:33:58 +0200267 $val = $data['value'];
Derek Allard2067d1a2008-11-13 22:59:24 +0000268 unset($data['value']); // textareas don't use the value attribute
269 }
Barry Mienydd671972010-10-04 16:33:58 +0200270
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200271 return '<textarea '._parse_form_attributes($data, $defaults).$extra.'>'.form_prep($val, TRUE)."</textarea>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000272 }
273}
274
275// ------------------------------------------------------------------------
276
Derek Jones68788d52010-03-05 10:11:31 -0600277if ( ! function_exists('form_multiselect'))
Derek Jones26399292009-04-08 16:14:17 +0000278{
Timothy Warren01b129a2012-04-27 11:36:50 -0400279 /**
280 * Multi-select menu
281 *
282 * @param string
283 * @param array
284 * @param mixed
285 * @param string
286 * @return string
287 */
Derek Jones26399292009-04-08 16:14:17 +0000288 function form_multiselect($name = '', $options = array(), $selected = array(), $extra = '')
289 {
290 if ( ! strpos($extra, 'multiple'))
291 {
292 $extra .= ' multiple="multiple"';
293 }
Barry Mienydd671972010-10-04 16:33:58 +0200294
Derek Jones26399292009-04-08 16:14:17 +0000295 return form_dropdown($name, $options, $selected, $extra);
296 }
297}
298
299// --------------------------------------------------------------------
300
Derek Allard2067d1a2008-11-13 22:59:24 +0000301if ( ! function_exists('form_dropdown'))
302{
Timothy Warren01b129a2012-04-27 11:36:50 -0400303 /**
304 * Drop-down Menu
305 *
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200306 * @param mixed $name
307 * @param mixed $options
308 * @param mixed $selected
309 * @param mixed $extra
Timothy Warren01b129a2012-04-27 11:36:50 -0400310 * @return string
311 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000312 function form_dropdown($name = '', $options = array(), $selected = array(), $extra = '')
313 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300314 // If name is really an array then we'll call the function again using the array
315 if (is_array($name) && isset($name['name']))
316 {
317 isset($name['options']) OR $name['options'] = array();
318 isset($name['selected']) OR $name['selected'] = array();
Andrey Andreev7f5f8aa2013-10-21 14:37:40 +0300319 isset($name['extra']) OR $name['extra'] = '';
Andrey Andreev93a83c72012-03-26 21:24:02 +0300320
321 return form_dropdown($name['name'], $name['options'], $name['selected'], $name['extra']);
322 }
323
Andrey Andreev582ebcb2012-10-27 00:52:15 +0300324 is_array($selected) OR $selected = array($selected);
Derek Allard2067d1a2008-11-13 22:59:24 +0000325
326 // If no selected state was submitted we will attempt to set it automatically
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200327 if (count($selected) === 0 && isset($_POST[$name]))
Derek Allard2067d1a2008-11-13 22:59:24 +0000328 {
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200329 $selected = array($_POST[$name]);
Derek Allard2067d1a2008-11-13 22:59:24 +0000330 }
Andrey Andreev7f5f8aa2013-10-21 14:37:40 +0300331
Ahmad Anbar8e7cc7a2013-10-04 02:45:28 +0300332 $extra = _attributes_to_string($extra);
Derek Allard2067d1a2008-11-13 22:59:24 +0000333
334 $multiple = (count($selected) > 1 && strpos($extra, 'multiple') === FALSE) ? ' multiple="multiple"' : '';
335
336 $form = '<select name="'.$name.'"'.$extra.$multiple.">\n";
Robin Sowell57fe4102009-03-26 18:58:46 +0000337
Derek Allard2067d1a2008-11-13 22:59:24 +0000338 foreach ($options as $key => $val)
339 {
340 $key = (string) $key;
Derek Allard2067d1a2008-11-13 22:59:24 +0000341
Andrey Andreev6b114ae2012-07-13 12:05:52 +0300342 if (is_array($val))
Derek Allard78a5fc92009-02-05 16:34:35 +0000343 {
Andrey Andreev6b114ae2012-07-13 12:05:52 +0300344 if (empty($val))
345 {
346 continue;
347 }
348
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200349 $form .= '<optgroup label="'.$key."\">\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000350
Derek Allard78a5fc92009-02-05 16:34:35 +0000351 foreach ($val as $optgroup_key => $optgroup_val)
352 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300353 $sel = in_array($optgroup_key, $selected) ? ' selected="selected"' : '';
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200354 $form .= '<option value="'.form_prep($optgroup_key).'"'.$sel.'>'
Andrey Andreev582ebcb2012-10-27 00:52:15 +0300355 .(string) $optgroup_val."</option>\n";
Derek Allard78a5fc92009-02-05 16:34:35 +0000356 }
357
Andrey Andreev93a83c72012-03-26 21:24:02 +0300358 $form .= "</optgroup>\n";
Derek Allard78a5fc92009-02-05 16:34:35 +0000359 }
360 else
361 {
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200362 $form .= '<option value="'.form_prep($key).'"'
Andrey Andreev582ebcb2012-10-27 00:52:15 +0300363 .(in_array($key, $selected) ? ' selected="selected"' : '').'>'
364 .(string) $val."</option>\n";
Derek Allard78a5fc92009-02-05 16:34:35 +0000365 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000366 }
367
Andrey Andreev93a83c72012-03-26 21:24:02 +0300368 return $form."</select>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000369 }
370}
371
372// ------------------------------------------------------------------------
373
Derek Allard2067d1a2008-11-13 22:59:24 +0000374if ( ! function_exists('form_checkbox'))
375{
Timothy Warren01b129a2012-04-27 11:36:50 -0400376 /**
377 * Checkbox Field
378 *
379 * @param mixed
380 * @param string
381 * @param bool
382 * @param string
383 * @return string
384 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000385 function form_checkbox($data = '', $value = '', $checked = FALSE, $extra = '')
386 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300387 $defaults = array('type' => 'checkbox', 'name' => ( ! is_array($data) ? $data : ''), 'value' => $value);
Derek Allard2067d1a2008-11-13 22:59:24 +0000388
Andrey Andreev93a83c72012-03-26 21:24:02 +0300389 if (is_array($data) && array_key_exists('checked', $data))
Derek Allard2067d1a2008-11-13 22:59:24 +0000390 {
391 $checked = $data['checked'];
392
Michiel Vugteveen910ff7a2012-06-06 20:03:14 +0200393 if ($checked == FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000394 {
395 unset($data['checked']);
396 }
397 else
398 {
399 $data['checked'] = 'checked';
400 }
401 }
402
Michiel Vugteveen910ff7a2012-06-06 20:03:14 +0200403 if ($checked == TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000404 {
405 $defaults['checked'] = 'checked';
406 }
407 else
408 {
409 unset($defaults['checked']);
410 }
411
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200412 return '<input '._parse_form_attributes($data, $defaults).$extra." />\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000413 }
414}
415
416// ------------------------------------------------------------------------
417
Derek Allard2067d1a2008-11-13 22:59:24 +0000418if ( ! function_exists('form_radio'))
419{
Timothy Warren01b129a2012-04-27 11:36:50 -0400420 /**
421 * Radio Button
422 *
423 * @param mixed
424 * @param string
425 * @param bool
426 * @param string
427 * @return string
428 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000429 function form_radio($data = '', $value = '', $checked = FALSE, $extra = '')
430 {
431 if ( ! is_array($data))
Barry Mienydd671972010-10-04 16:33:58 +0200432 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000433 $data = array('name' => $data);
434 }
435
436 $data['type'] = 'radio';
437 return form_checkbox($data, $value, $checked, $extra);
438 }
439}
440
441// ------------------------------------------------------------------------
442
Derek Allard2067d1a2008-11-13 22:59:24 +0000443if ( ! function_exists('form_submit'))
Barry Mienydd671972010-10-04 16:33:58 +0200444{
Timothy Warren01b129a2012-04-27 11:36:50 -0400445 /**
446 * Submit Button
447 *
448 * @param mixed
449 * @param string
450 * @param string
451 * @return string
452 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000453 function form_submit($data = '', $value = '', $extra = '')
454 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300455 $defaults = array('type' => 'submit', 'name' => ( ! is_array($data) ? $data : ''), 'value' => $value);
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200456 return '<input '._parse_form_attributes($data, $defaults).$extra." />\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000457 }
458}
459
460// ------------------------------------------------------------------------
461
Derek Allard2067d1a2008-11-13 22:59:24 +0000462if ( ! function_exists('form_reset'))
463{
Timothy Warren01b129a2012-04-27 11:36:50 -0400464 /**
465 * Reset Button
466 *
467 * @param mixed
468 * @param string
469 * @param string
470 * @return string
471 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000472 function form_reset($data = '', $value = '', $extra = '')
473 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300474 $defaults = array('type' => 'reset', 'name' => ( ! is_array($data) ? $data : ''), 'value' => $value);
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200475 return '<input '._parse_form_attributes($data, $defaults).$extra." />\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000476 }
477}
478
479// ------------------------------------------------------------------------
480
Derek Allard2067d1a2008-11-13 22:59:24 +0000481if ( ! function_exists('form_button'))
482{
Timothy Warren01b129a2012-04-27 11:36:50 -0400483 /**
484 * Form Button
485 *
486 * @param mixed
487 * @param string
488 * @param string
489 * @return string
490 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000491 function form_button($data = '', $content = '', $extra = '')
492 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300493 $defaults = array('name' => ( ! is_array($data) ? $data : ''), 'type' => 'button');
494 if (is_array($data) && isset($data['content']))
Derek Allard2067d1a2008-11-13 22:59:24 +0000495 {
496 $content = $data['content'];
497 unset($data['content']); // content is not an attribute
498 }
499
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200500 return '<button '._parse_form_attributes($data, $defaults).$extra.'>'.$content."</button>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000501 }
502}
503
504// ------------------------------------------------------------------------
505
Derek Allard2067d1a2008-11-13 22:59:24 +0000506if ( ! function_exists('form_label'))
507{
Timothy Warren01b129a2012-04-27 11:36:50 -0400508 /**
509 * Form Label Tag
510 *
511 * @param string The text to appear onscreen
512 * @param string The id the label applies to
513 * @param string Additional attributes
514 * @return string
515 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000516 function form_label($label_text = '', $id = '', $attributes = array())
517 {
518
519 $label = '<label';
520
Alex Bilbie773ccc32012-06-02 11:11:08 +0100521 if ($id !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000522 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300523 $label .= ' for="'.$id.'"';
Derek Allard2067d1a2008-11-13 22:59:24 +0000524 }
525
Andrey Andreev93a83c72012-03-26 21:24:02 +0300526 if (is_array($attributes) && count($attributes) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000527 {
528 foreach ($attributes as $key => $val)
529 {
530 $label .= ' '.$key.'="'.$val.'"';
531 }
532 }
533
Andrey Andreev93a83c72012-03-26 21:24:02 +0300534 return $label.'>'.$label_text.'</label>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000535 }
536}
537
538// ------------------------------------------------------------------------
Timothy Warren01b129a2012-04-27 11:36:50 -0400539
Derek Allard2067d1a2008-11-13 22:59:24 +0000540if ( ! function_exists('form_fieldset'))
541{
Timothy Warren01b129a2012-04-27 11:36:50 -0400542 /**
543 * Fieldset Tag
544 *
545 * Used to produce <fieldset><legend>text</legend>. To close fieldset
546 * use form_fieldset_close()
547 *
548 * @param string The legend text
vlakoffea19bc42013-07-27 10:07:43 +0200549 * @param array Additional attributes
Timothy Warren01b129a2012-04-27 11:36:50 -0400550 * @return string
551 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000552 function form_fieldset($legend_text = '', $attributes = array())
553 {
vlakoffea19bc42013-07-27 10:07:43 +0200554 $fieldset = '<fieldset'._attributes_to_string($attributes).">\n";
Alex Bilbie773ccc32012-06-02 11:11:08 +0100555 if ($legend_text !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000556 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300557 return $fieldset.'<legend>'.$legend_text."</legend>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000558 }
559
560 return $fieldset;
561 }
562}
563
564// ------------------------------------------------------------------------
565
Derek Allard2067d1a2008-11-13 22:59:24 +0000566if ( ! function_exists('form_fieldset_close'))
567{
Timothy Warren01b129a2012-04-27 11:36:50 -0400568 /**
569 * Fieldset Close Tag
570 *
571 * @param string
572 * @return string
573 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000574 function form_fieldset_close($extra = '')
575 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300576 return '</fieldset>'.$extra;
Derek Allard2067d1a2008-11-13 22:59:24 +0000577 }
578}
579
580// ------------------------------------------------------------------------
581
Derek Allard2067d1a2008-11-13 22:59:24 +0000582if ( ! function_exists('form_close'))
583{
Timothy Warren01b129a2012-04-27 11:36:50 -0400584 /**
585 * Form Close Tag
586 *
587 * @param string
588 * @return string
589 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000590 function form_close($extra = '')
591 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300592 return '</form>'.$extra;
Derek Allard2067d1a2008-11-13 22:59:24 +0000593 }
594}
595
596// ------------------------------------------------------------------------
597
Derek Allard2067d1a2008-11-13 22:59:24 +0000598if ( ! function_exists('form_prep'))
599{
Timothy Warren01b129a2012-04-27 11:36:50 -0400600 /**
601 * Form Prep
602 *
603 * Formats text so that it can be safely placed in a form field in the event it has HTML tags.
604 *
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200605 * @param string|string[] $str Value to escape
606 * @param bool $is_textarea Whether we're escaping for a textarea element
607 * @return string|string[] Escaped values
Timothy Warren01b129a2012-04-27 11:36:50 -0400608 */
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200609 function form_prep($str = '', $is_textarea = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000610 {
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200611 if (is_array($str))
612 {
613 foreach (array_keys($str) as $key)
614 {
615 $str[$key] = form_prep($str[$key], $is_textarea);
616 }
617
618 return $str;
619 }
620
621 if ($is_textarea === TRUE)
622 {
623 return str_replace(array('<', '>'), array('&lt;', '&gt;'), stripslashes($str));
624 }
625
Andrey Andreev075f6fa2012-11-01 15:18:44 +0200626 return str_replace(array("'", '"'), array('&#39;', '&quot;'), stripslashes($str));
Derek Allard2067d1a2008-11-13 22:59:24 +0000627 }
628}
629
630// ------------------------------------------------------------------------
631
Derek Allard2067d1a2008-11-13 22:59:24 +0000632if ( ! function_exists('set_value'))
633{
Timothy Warren01b129a2012-04-27 11:36:50 -0400634 /**
635 * Form Value
636 *
637 * Grabs a value from the POST array for the specified field so you can
638 * re-populate an input field or textarea. If Form Validation
639 * is active it retrieves the info from the validation class
640 *
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200641 * @param string $field Field name
642 * @param string $default Default value
643 * @param bool $is_textarea Whether the field is a textarea element
644 * @return string
Timothy Warren01b129a2012-04-27 11:36:50 -0400645 */
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200646 function set_value($field = '', $default = '', $is_textarea = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000647 {
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530648 $CI =& get_instance();
Derek Allard2067d1a2008-11-13 22:59:24 +0000649
nisheeth-barthwal47ea5a82013-03-26 18:57:28 +0530650 $value = (isset($CI->form_validation) && is_object($CI->form_validation) && $CI->form_validation->has_rule($field))
651 ? $CI->form_validation->set_value($field, $default)
652 : $CI->input->post($field, FALSE);
653
654 return form_prep($value === NULL ? $default : $value, $is_textarea);
Derek Allard2067d1a2008-11-13 22:59:24 +0000655 }
656}
657
658// ------------------------------------------------------------------------
659
Derek Allard2067d1a2008-11-13 22:59:24 +0000660if ( ! function_exists('set_select'))
661{
Timothy Warren01b129a2012-04-27 11:36:50 -0400662 /**
663 * Set Select
664 *
665 * Let's you set the selected value of a <select> menu via data in the POST array.
666 * If Form Validation is active it retrieves the info from the validation class
667 *
668 * @param string
669 * @param string
670 * @param bool
671 * @return string
672 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000673 function set_select($field = '', $value = '', $default = FALSE)
674 {
Andrey Andreev67f6a5e2013-09-13 16:21:31 +0300675 $CI =& get_instance();
Derek Allard2067d1a2008-11-13 22:59:24 +0000676
Andrey Andreev67f6a5e2013-09-13 16:21:31 +0300677 if (isset($CI->form_validation) && is_object($CI->form_validation) && $CI->form_validation->has_rule($field))
Derek Allard2067d1a2008-11-13 22:59:24 +0000678 {
Andrey Andreev67f6a5e2013-09-13 16:21:31 +0300679 return $CI->form_validation->set_select($field, $value, $default);
680 }
681 elseif (($input = $CI->input->post($field, FALSE)) === NULL)
682 {
683 return ($default === TRUE) ? ' selected="selected"' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000684 }
Andrey Andreeva587a932013-10-23 19:57:46 +0300685
686 $value = (string) $value;
687 if (is_array($input))
Andrey Andreevd3b7e242013-09-13 18:36:29 +0300688 {
Andrey Andreeva587a932013-10-23 19:57:46 +0300689 // Note: in_array('', array(0)) returns TRUE, do not use it
690 foreach ($input as &$v)
691 {
692 if ($value === $v)
693 {
694 return ' selected="selected"';
695 }
696 }
697
698 return '';
Andrey Andreevd3b7e242013-09-13 18:36:29 +0300699 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000700
Andrey Andreevd3b7e242013-09-13 18:36:29 +0300701 return ($input === $value) ? ' selected="selected"' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000702 }
703}
704
705// ------------------------------------------------------------------------
706
Derek Allard2067d1a2008-11-13 22:59:24 +0000707if ( ! function_exists('set_checkbox'))
708{
Timothy Warren01b129a2012-04-27 11:36:50 -0400709 /**
710 * Set Checkbox
711 *
712 * Let's you set the selected value of a checkbox via the value in the POST array.
713 * If Form Validation is active it retrieves the info from the validation class
714 *
715 * @param string
716 * @param string
717 * @param bool
718 * @return string
719 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000720 function set_checkbox($field = '', $value = '', $default = FALSE)
721 {
Andrey Andreevae50f552013-09-13 16:17:41 +0300722 $CI =& get_instance();
Derek Allard2067d1a2008-11-13 22:59:24 +0000723
Andrey Andreevae50f552013-09-13 16:17:41 +0300724 if (isset($CI->form_validation) && is_object($CI->form_validation) && $CI->form_validation->has_rule($field))
Barry Mienydd671972010-10-04 16:33:58 +0200725 {
Andrey Andreevae50f552013-09-13 16:17:41 +0300726 return $CI->form_validation->set_checkbox($field, $value, $default);
727 }
728 elseif (($input = $CI->input->post($field, FALSE)) === NULL)
729 {
730 return ($default === TRUE) ? ' checked="checked"' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000731 }
Andrey Andreeva587a932013-10-23 19:57:46 +0300732
733 $value = (string) $value;
734 if (is_array($input))
Andrey Andreeve8a23a52013-09-13 18:29:29 +0300735 {
Andrey Andreeva587a932013-10-23 19:57:46 +0300736 // Note: in_array('', array(0)) returns TRUE, do not use it
737 foreach ($input as &$v)
738 {
739 if ($value === $v)
740 {
741 return ' checked="checked"';
742 }
743 }
744
745 return '';
Andrey Andreeve8a23a52013-09-13 18:29:29 +0300746 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000747
Andrey Andreevae50f552013-09-13 16:17:41 +0300748 return ($input === $value) ? ' checked="checked"' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000749 }
750}
751
752// ------------------------------------------------------------------------
753
Derek Allard2067d1a2008-11-13 22:59:24 +0000754if ( ! function_exists('set_radio'))
755{
Timothy Warren01b129a2012-04-27 11:36:50 -0400756 /**
757 * Set Radio
758 *
759 * Let's you set the selected value of a radio field via info in the POST array.
760 * If Form Validation is active it retrieves the info from the validation class
761 *
Andrey Andreevae50f552013-09-13 16:17:41 +0300762 * @param string $field
763 * @param string $value
764 * @param bool $default
Timothy Warren01b129a2012-04-27 11:36:50 -0400765 * @return string
766 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000767 function set_radio($field = '', $value = '', $default = FALSE)
768 {
Andrey Andreevae50f552013-09-13 16:17:41 +0300769 $CI =& get_instance();
Derek Allard2067d1a2008-11-13 22:59:24 +0000770
Andrey Andreevae50f552013-09-13 16:17:41 +0300771 if (isset($CI->form_validation) && is_object($CI->form_validation) && $CI->form_validation->has_rule($field))
Derek Allard2067d1a2008-11-13 22:59:24 +0000772 {
Andrey Andreevae50f552013-09-13 16:17:41 +0300773 return $CI->form_validation->set_radio($field, $value, $default);
774 }
775 elseif (($input = $CI->input->post($field, FALSE)) === NULL)
776 {
777 return ($default === TRUE) ? ' checked="checked"' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000778 }
779
Andrey Andreeva587a932013-10-23 19:57:46 +0300780 return ($input === (string) $value) ? ' checked="checked"' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000781 }
782}
783
784// ------------------------------------------------------------------------
785
Derek Allard2067d1a2008-11-13 22:59:24 +0000786if ( ! function_exists('form_error'))
787{
Timothy Warren01b129a2012-04-27 11:36:50 -0400788 /**
789 * Form Error
790 *
791 * Returns the error for a specific form field. This is a helper for the
792 * form validation class.
793 *
794 * @param string
795 * @param string
796 * @param string
797 * @return string
798 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000799 function form_error($field = '', $prefix = '', $suffix = '')
800 {
801 if (FALSE === ($OBJ =& _get_validation_object()))
802 {
803 return '';
804 }
805
806 return $OBJ->error($field, $prefix, $suffix);
807 }
808}
809
810// ------------------------------------------------------------------------
811
Derek Allard2067d1a2008-11-13 22:59:24 +0000812if ( ! function_exists('validation_errors'))
813{
Timothy Warren01b129a2012-04-27 11:36:50 -0400814 /**
815 * Validation Error String
816 *
817 * Returns all the errors associated with a form submission. This is a helper
818 * function for the form validation class.
819 *
820 * @param string
821 * @param string
822 * @return string
823 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000824 function validation_errors($prefix = '', $suffix = '')
825 {
826 if (FALSE === ($OBJ =& _get_validation_object()))
Greg Akerc83bea62011-04-23 12:12:57 -0500827 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000828 return '';
829 }
830
831 return $OBJ->error_string($prefix, $suffix);
832 }
833}
834
835// ------------------------------------------------------------------------
836
Derek Allard2067d1a2008-11-13 22:59:24 +0000837if ( ! function_exists('_parse_form_attributes'))
838{
Timothy Warren01b129a2012-04-27 11:36:50 -0400839 /**
840 * Parse the form attributes
841 *
842 * Helper function used by some of the form helpers
843 *
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200844 * @param array $attributes List of attributes
845 * @param array $default Default values
Timothy Warren01b129a2012-04-27 11:36:50 -0400846 * @return string
847 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000848 function _parse_form_attributes($attributes, $default)
849 {
850 if (is_array($attributes))
851 {
852 foreach ($default as $key => $val)
853 {
854 if (isset($attributes[$key]))
855 {
856 $default[$key] = $attributes[$key];
857 unset($attributes[$key]);
858 }
859 }
860
861 if (count($attributes) > 0)
862 {
863 $default = array_merge($default, $attributes);
864 }
865 }
866
867 $att = '';
Barry Mienydd671972010-10-04 16:33:58 +0200868
Derek Allard2067d1a2008-11-13 22:59:24 +0000869 foreach ($default as $key => $val)
870 {
Alex Bilbie773ccc32012-06-02 11:11:08 +0100871 if ($key === 'value')
Derek Allard2067d1a2008-11-13 22:59:24 +0000872 {
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200873 $val = form_prep($val);
Derek Allard2067d1a2008-11-13 22:59:24 +0000874 }
Andrey Andreev60b97142012-10-25 16:59:17 +0300875 elseif ($key === 'name' && ! strlen($default['name']))
876 {
877 continue;
878 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000879
Andrey Andreev93a83c72012-03-26 21:24:02 +0300880 $att .= $key.'="'.$val.'" ';
Derek Allard2067d1a2008-11-13 22:59:24 +0000881 }
882
883 return $att;
884 }
885}
886
887// ------------------------------------------------------------------------
888
Derek Allard2067d1a2008-11-13 22:59:24 +0000889if ( ! function_exists('_attributes_to_string'))
890{
Timothy Warren01b129a2012-04-27 11:36:50 -0400891 /**
892 * Attributes To String
893 *
894 * Helper function used by some of the form helpers
895 *
896 * @param mixed
Timothy Warren01b129a2012-04-27 11:36:50 -0400897 * @return string
898 */
vlakoffea19bc42013-07-27 10:07:43 +0200899 function _attributes_to_string($attributes)
Derek Allard2067d1a2008-11-13 22:59:24 +0000900 {
vlakoffbb8b0892013-07-28 22:35:04 +0200901 if (empty($attributes))
902 {
903 return '';
904 }
905
vlakoffea19bc42013-07-27 10:07:43 +0200906 if (is_object($attributes))
Derek Allard2067d1a2008-11-13 22:59:24 +0000907 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300908 $attributes = (array) $attributes;
Derek Allard2067d1a2008-11-13 22:59:24 +0000909 }
910
vlakoffea19bc42013-07-27 10:07:43 +0200911 if (is_array($attributes))
Derek Allard2067d1a2008-11-13 22:59:24 +0000912 {
Derek Allard3241d732009-09-17 12:17:45 +0000913 $atts = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000914
Derek Allard3241d732009-09-17 12:17:45 +0000915 foreach ($attributes as $key => $val)
916 {
917 $atts .= ' '.$key.'="'.$val.'"';
918 }
919
920 return $atts;
Derek Allard2067d1a2008-11-13 22:59:24 +0000921 }
vlakoffea19bc42013-07-27 10:07:43 +0200922
vlakofff7464752013-07-28 22:23:21 +0200923 if (is_string($attributes))
924 {
vlakoffbb8b0892013-07-28 22:35:04 +0200925 return ' '.$attributes;
vlakofff7464752013-07-28 22:23:21 +0200926 }
927
vlakoffea19bc42013-07-27 10:07:43 +0200928 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000929 }
930}
931
932// ------------------------------------------------------------------------
933
Derek Allard2067d1a2008-11-13 22:59:24 +0000934if ( ! function_exists('_get_validation_object'))
935{
Timothy Warren01b129a2012-04-27 11:36:50 -0400936 /**
937 * Validation Object
938 *
939 * Determines what the form validation class was instantiated as, fetches
940 * the object and returns it.
941 *
942 * @return mixed
943 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000944 function &_get_validation_object()
945 {
946 $CI =& get_instance();
947
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500948 // We set this as a variable since we're returning by reference.
Derek Allard2067d1a2008-11-13 22:59:24 +0000949 $return = FALSE;
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200950
Andrey Andreev519f87a2013-07-23 17:16:10 +0300951 if (FALSE !== ($object = $CI->load->is_loaded('Form_validation')))
Derek Allard2067d1a2008-11-13 22:59:24 +0000952 {
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500953 if ( ! isset($CI->$object) OR ! is_object($CI->$object))
954 {
955 return $return;
956 }
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200957
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500958 return $CI->$object;
Derek Allard2067d1a2008-11-13 22:59:24 +0000959 }
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200960
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500961 return $return;
Derek Allard2067d1a2008-11-13 22:59:24 +0000962 }
963}
964
Derek Allard2067d1a2008-11-13 22:59:24 +0000965/* End of file form_helper.php */
Zachary Cardoza9f27a3e2013-03-23 21:59:20 -0700966/* Location: ./system/helpers/form_helper.php */