blob: 2c1a639df55de1d37848279151159d19f4bce468 [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
darwinel871754a2014-02-11 17:34:57 +010021 * @copyright Copyright (c) 2008 - 2014, 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 *
Brennan Thompson40cd6002014-02-14 12:06:38 -0700306 * @param mixed $data
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200307 * @param mixed $options
308 * @param mixed $selected
309 * @param mixed $extra
Timothy Warren01b129a2012-04-27 11:36:50 -0400310 * @return string
311 */
Brennan Thompson40cd6002014-02-14 12:06:38 -0700312 function form_dropdown($data = '', $options = array(), $selected = array(), $extra = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000313 {
Brennan Thompson40cd6002014-02-14 12:06:38 -0700314 $name = ! is_array($data) ? $data : '';
315 $defaults = array('name' => ( $name));
316
Brennan Thompson06a0d622014-02-14 12:17:48 -0700317 if ( is_array($data) AND isset($data['selected']) AND $data['selected'] !== NULL)
Andrey Andreev93a83c72012-03-26 21:24:02 +0300318 {
Brennan Thompson40cd6002014-02-14 12:06:38 -0700319 $selected = $data['selected'];
320 unset($data['selected']); // selects don't have a selected attribute
Andrey Andreev93a83c72012-03-26 21:24:02 +0300321 }
322
Andrey Andreev582ebcb2012-10-27 00:52:15 +0300323 is_array($selected) OR $selected = array($selected);
Derek Allard2067d1a2008-11-13 22:59:24 +0000324
325 // If no selected state was submitted we will attempt to set it automatically
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200326 if (count($selected) === 0 && isset($_POST[$name]))
Derek Allard2067d1a2008-11-13 22:59:24 +0000327 {
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200328 $selected = array($_POST[$name]);
Derek Allard2067d1a2008-11-13 22:59:24 +0000329 }
Brennan Thompson40cd6002014-02-14 12:06:38 -0700330
331 if ( is_array($data) && isset($data['options']))
332 {
333 $options = $data['options'];
334 unset($data['options']); // selects don't use an options attribute
335 }
Brennan Thompson21ef97e2014-02-16 11:01:03 -0700336
337 is_array($options) OR $options = array($options);
338
339 $extra = _attributes_to_string($extra);
Brennan Thompson40cd6002014-02-14 12:06:38 -0700340
Derek Allard2067d1a2008-11-13 22:59:24 +0000341 $multiple = (count($selected) > 1 && strpos($extra, 'multiple') === FALSE) ? ' multiple="multiple"' : '';
Brennan Thompson40cd6002014-02-14 12:06:38 -0700342
Brennan Thompson21ef97e2014-02-16 11:01:03 -0700343 $form = '<select '.trim(_parse_form_attributes($data, $defaults)).$extra.$multiple.">\n";
Brennan Thompson40cd6002014-02-14 12:06:38 -0700344
Derek Allard2067d1a2008-11-13 22:59:24 +0000345 foreach ($options as $key => $val)
346 {
347 $key = (string) $key;
Derek Allard2067d1a2008-11-13 22:59:24 +0000348
Andrey Andreev6b114ae2012-07-13 12:05:52 +0300349 if (is_array($val))
Derek Allard78a5fc92009-02-05 16:34:35 +0000350 {
Andrey Andreev6b114ae2012-07-13 12:05:52 +0300351 if (empty($val))
352 {
353 continue;
354 }
355
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200356 $form .= '<optgroup label="'.$key."\">\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000357
Derek Allard78a5fc92009-02-05 16:34:35 +0000358 foreach ($val as $optgroup_key => $optgroup_val)
359 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300360 $sel = in_array($optgroup_key, $selected) ? ' selected="selected"' : '';
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200361 $form .= '<option value="'.form_prep($optgroup_key).'"'.$sel.'>'
Brennan Thompson40cd6002014-02-14 12:06:38 -0700362 .(string) $optgroup_val."</option>\n";
Derek Allard78a5fc92009-02-05 16:34:35 +0000363 }
364
Andrey Andreev93a83c72012-03-26 21:24:02 +0300365 $form .= "</optgroup>\n";
Derek Allard78a5fc92009-02-05 16:34:35 +0000366 }
367 else
368 {
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200369 $form .= '<option value="'.form_prep($key).'"'
Brennan Thompson40cd6002014-02-14 12:06:38 -0700370 .(in_array($key, $selected) ? ' selected="selected"' : '').'>'
371 .(string) $val."</option>\n";
Derek Allard78a5fc92009-02-05 16:34:35 +0000372 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000373 }
Brennan Thompson40cd6002014-02-14 12:06:38 -0700374
Andrey Andreev93a83c72012-03-26 21:24:02 +0300375 return $form."</select>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000376 }
377}
378
379// ------------------------------------------------------------------------
380
Derek Allard2067d1a2008-11-13 22:59:24 +0000381if ( ! function_exists('form_checkbox'))
382{
Timothy Warren01b129a2012-04-27 11:36:50 -0400383 /**
384 * Checkbox Field
385 *
386 * @param mixed
387 * @param string
388 * @param bool
389 * @param string
390 * @return string
391 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000392 function form_checkbox($data = '', $value = '', $checked = FALSE, $extra = '')
393 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300394 $defaults = array('type' => 'checkbox', 'name' => ( ! is_array($data) ? $data : ''), 'value' => $value);
Derek Allard2067d1a2008-11-13 22:59:24 +0000395
Andrey Andreev93a83c72012-03-26 21:24:02 +0300396 if (is_array($data) && array_key_exists('checked', $data))
Derek Allard2067d1a2008-11-13 22:59:24 +0000397 {
398 $checked = $data['checked'];
399
Michiel Vugteveen910ff7a2012-06-06 20:03:14 +0200400 if ($checked == FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000401 {
402 unset($data['checked']);
403 }
404 else
405 {
406 $data['checked'] = 'checked';
407 }
408 }
409
Michiel Vugteveen910ff7a2012-06-06 20:03:14 +0200410 if ($checked == TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000411 {
412 $defaults['checked'] = 'checked';
413 }
414 else
415 {
416 unset($defaults['checked']);
417 }
418
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200419 return '<input '._parse_form_attributes($data, $defaults).$extra." />\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000420 }
421}
422
423// ------------------------------------------------------------------------
424
Derek Allard2067d1a2008-11-13 22:59:24 +0000425if ( ! function_exists('form_radio'))
426{
Timothy Warren01b129a2012-04-27 11:36:50 -0400427 /**
428 * Radio Button
429 *
430 * @param mixed
431 * @param string
432 * @param bool
433 * @param string
434 * @return string
435 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000436 function form_radio($data = '', $value = '', $checked = FALSE, $extra = '')
437 {
438 if ( ! is_array($data))
Barry Mienydd671972010-10-04 16:33:58 +0200439 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000440 $data = array('name' => $data);
441 }
442
443 $data['type'] = 'radio';
444 return form_checkbox($data, $value, $checked, $extra);
445 }
446}
447
448// ------------------------------------------------------------------------
449
Derek Allard2067d1a2008-11-13 22:59:24 +0000450if ( ! function_exists('form_submit'))
Barry Mienydd671972010-10-04 16:33:58 +0200451{
Timothy Warren01b129a2012-04-27 11:36:50 -0400452 /**
453 * Submit Button
454 *
455 * @param mixed
456 * @param string
457 * @param string
458 * @return string
459 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000460 function form_submit($data = '', $value = '', $extra = '')
461 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300462 $defaults = array('type' => 'submit', 'name' => ( ! is_array($data) ? $data : ''), 'value' => $value);
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200463 return '<input '._parse_form_attributes($data, $defaults).$extra." />\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000464 }
465}
466
467// ------------------------------------------------------------------------
468
Derek Allard2067d1a2008-11-13 22:59:24 +0000469if ( ! function_exists('form_reset'))
470{
Timothy Warren01b129a2012-04-27 11:36:50 -0400471 /**
472 * Reset Button
473 *
474 * @param mixed
475 * @param string
476 * @param string
477 * @return string
478 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000479 function form_reset($data = '', $value = '', $extra = '')
480 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300481 $defaults = array('type' => 'reset', 'name' => ( ! is_array($data) ? $data : ''), 'value' => $value);
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200482 return '<input '._parse_form_attributes($data, $defaults).$extra." />\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000483 }
484}
485
486// ------------------------------------------------------------------------
487
Derek Allard2067d1a2008-11-13 22:59:24 +0000488if ( ! function_exists('form_button'))
489{
Timothy Warren01b129a2012-04-27 11:36:50 -0400490 /**
491 * Form Button
492 *
493 * @param mixed
494 * @param string
495 * @param string
496 * @return string
497 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000498 function form_button($data = '', $content = '', $extra = '')
499 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300500 $defaults = array('name' => ( ! is_array($data) ? $data : ''), 'type' => 'button');
501 if (is_array($data) && isset($data['content']))
Derek Allard2067d1a2008-11-13 22:59:24 +0000502 {
503 $content = $data['content'];
504 unset($data['content']); // content is not an attribute
505 }
506
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200507 return '<button '._parse_form_attributes($data, $defaults).$extra.'>'.$content."</button>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000508 }
509}
510
511// ------------------------------------------------------------------------
512
Derek Allard2067d1a2008-11-13 22:59:24 +0000513if ( ! function_exists('form_label'))
514{
Timothy Warren01b129a2012-04-27 11:36:50 -0400515 /**
516 * Form Label Tag
517 *
518 * @param string The text to appear onscreen
519 * @param string The id the label applies to
520 * @param string Additional attributes
521 * @return string
522 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000523 function form_label($label_text = '', $id = '', $attributes = array())
524 {
525
526 $label = '<label';
527
Alex Bilbie773ccc32012-06-02 11:11:08 +0100528 if ($id !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000529 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300530 $label .= ' for="'.$id.'"';
Derek Allard2067d1a2008-11-13 22:59:24 +0000531 }
532
Andrey Andreev93a83c72012-03-26 21:24:02 +0300533 if (is_array($attributes) && count($attributes) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000534 {
535 foreach ($attributes as $key => $val)
536 {
537 $label .= ' '.$key.'="'.$val.'"';
538 }
539 }
540
Andrey Andreev93a83c72012-03-26 21:24:02 +0300541 return $label.'>'.$label_text.'</label>';
Derek Allard2067d1a2008-11-13 22:59:24 +0000542 }
543}
544
545// ------------------------------------------------------------------------
Timothy Warren01b129a2012-04-27 11:36:50 -0400546
Derek Allard2067d1a2008-11-13 22:59:24 +0000547if ( ! function_exists('form_fieldset'))
548{
Timothy Warren01b129a2012-04-27 11:36:50 -0400549 /**
550 * Fieldset Tag
551 *
552 * Used to produce <fieldset><legend>text</legend>. To close fieldset
553 * use form_fieldset_close()
554 *
555 * @param string The legend text
vlakoffea19bc42013-07-27 10:07:43 +0200556 * @param array Additional attributes
Timothy Warren01b129a2012-04-27 11:36:50 -0400557 * @return string
558 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000559 function form_fieldset($legend_text = '', $attributes = array())
560 {
vlakoffea19bc42013-07-27 10:07:43 +0200561 $fieldset = '<fieldset'._attributes_to_string($attributes).">\n";
Alex Bilbie773ccc32012-06-02 11:11:08 +0100562 if ($legend_text !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000563 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300564 return $fieldset.'<legend>'.$legend_text."</legend>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +0000565 }
566
567 return $fieldset;
568 }
569}
570
571// ------------------------------------------------------------------------
572
Derek Allard2067d1a2008-11-13 22:59:24 +0000573if ( ! function_exists('form_fieldset_close'))
574{
Timothy Warren01b129a2012-04-27 11:36:50 -0400575 /**
576 * Fieldset Close Tag
577 *
578 * @param string
579 * @return string
580 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000581 function form_fieldset_close($extra = '')
582 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300583 return '</fieldset>'.$extra;
Derek Allard2067d1a2008-11-13 22:59:24 +0000584 }
585}
586
587// ------------------------------------------------------------------------
588
Derek Allard2067d1a2008-11-13 22:59:24 +0000589if ( ! function_exists('form_close'))
590{
Timothy Warren01b129a2012-04-27 11:36:50 -0400591 /**
592 * Form Close Tag
593 *
594 * @param string
595 * @return string
596 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000597 function form_close($extra = '')
598 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300599 return '</form>'.$extra;
Derek Allard2067d1a2008-11-13 22:59:24 +0000600 }
601}
602
603// ------------------------------------------------------------------------
604
Derek Allard2067d1a2008-11-13 22:59:24 +0000605if ( ! function_exists('form_prep'))
606{
Timothy Warren01b129a2012-04-27 11:36:50 -0400607 /**
608 * Form Prep
609 *
610 * Formats text so that it can be safely placed in a form field in the event it has HTML tags.
611 *
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200612 * @param string|string[] $str Value to escape
613 * @param bool $is_textarea Whether we're escaping for a textarea element
614 * @return string|string[] Escaped values
Timothy Warren01b129a2012-04-27 11:36:50 -0400615 */
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200616 function form_prep($str = '', $is_textarea = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000617 {
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200618 if (is_array($str))
619 {
620 foreach (array_keys($str) as $key)
621 {
622 $str[$key] = form_prep($str[$key], $is_textarea);
623 }
624
625 return $str;
626 }
627
628 if ($is_textarea === TRUE)
629 {
630 return str_replace(array('<', '>'), array('&lt;', '&gt;'), stripslashes($str));
631 }
632
Andrey Andreev075f6fa2012-11-01 15:18:44 +0200633 return str_replace(array("'", '"'), array('&#39;', '&quot;'), stripslashes($str));
Derek Allard2067d1a2008-11-13 22:59:24 +0000634 }
635}
636
637// ------------------------------------------------------------------------
638
Derek Allard2067d1a2008-11-13 22:59:24 +0000639if ( ! function_exists('set_value'))
640{
Timothy Warren01b129a2012-04-27 11:36:50 -0400641 /**
642 * Form Value
643 *
644 * Grabs a value from the POST array for the specified field so you can
645 * re-populate an input field or textarea. If Form Validation
646 * is active it retrieves the info from the validation class
647 *
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200648 * @param string $field Field name
649 * @param string $default Default value
650 * @param bool $is_textarea Whether the field is a textarea element
651 * @return string
Timothy Warren01b129a2012-04-27 11:36:50 -0400652 */
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200653 function set_value($field = '', $default = '', $is_textarea = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000654 {
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530655 $CI =& get_instance();
Derek Allard2067d1a2008-11-13 22:59:24 +0000656
nisheeth-barthwal47ea5a82013-03-26 18:57:28 +0530657 $value = (isset($CI->form_validation) && is_object($CI->form_validation) && $CI->form_validation->has_rule($field))
658 ? $CI->form_validation->set_value($field, $default)
659 : $CI->input->post($field, FALSE);
660
661 return form_prep($value === NULL ? $default : $value, $is_textarea);
Derek Allard2067d1a2008-11-13 22:59:24 +0000662 }
663}
664
665// ------------------------------------------------------------------------
666
Derek Allard2067d1a2008-11-13 22:59:24 +0000667if ( ! function_exists('set_select'))
668{
Timothy Warren01b129a2012-04-27 11:36:50 -0400669 /**
670 * Set Select
671 *
672 * Let's you set the selected value of a <select> menu via data in the POST array.
673 * If Form Validation is active it retrieves the info from the validation class
674 *
675 * @param string
676 * @param string
677 * @param bool
678 * @return string
679 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000680 function set_select($field = '', $value = '', $default = FALSE)
681 {
Andrey Andreev67f6a5e2013-09-13 16:21:31 +0300682 $CI =& get_instance();
Derek Allard2067d1a2008-11-13 22:59:24 +0000683
Andrey Andreev67f6a5e2013-09-13 16:21:31 +0300684 if (isset($CI->form_validation) && is_object($CI->form_validation) && $CI->form_validation->has_rule($field))
Derek Allard2067d1a2008-11-13 22:59:24 +0000685 {
Andrey Andreev67f6a5e2013-09-13 16:21:31 +0300686 return $CI->form_validation->set_select($field, $value, $default);
687 }
688 elseif (($input = $CI->input->post($field, FALSE)) === NULL)
689 {
690 return ($default === TRUE) ? ' selected="selected"' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000691 }
Andrey Andreeva587a932013-10-23 19:57:46 +0300692
693 $value = (string) $value;
694 if (is_array($input))
Andrey Andreevd3b7e242013-09-13 18:36:29 +0300695 {
Andrey Andreeva587a932013-10-23 19:57:46 +0300696 // Note: in_array('', array(0)) returns TRUE, do not use it
697 foreach ($input as &$v)
698 {
699 if ($value === $v)
700 {
701 return ' selected="selected"';
702 }
703 }
704
705 return '';
Andrey Andreevd3b7e242013-09-13 18:36:29 +0300706 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000707
Andrey Andreevd3b7e242013-09-13 18:36:29 +0300708 return ($input === $value) ? ' selected="selected"' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000709 }
710}
711
712// ------------------------------------------------------------------------
713
Derek Allard2067d1a2008-11-13 22:59:24 +0000714if ( ! function_exists('set_checkbox'))
715{
Timothy Warren01b129a2012-04-27 11:36:50 -0400716 /**
717 * Set Checkbox
718 *
719 * Let's you set the selected value of a checkbox via the value in the POST array.
720 * If Form Validation is active it retrieves the info from the validation class
721 *
722 * @param string
723 * @param string
724 * @param bool
725 * @return string
726 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000727 function set_checkbox($field = '', $value = '', $default = FALSE)
728 {
Andrey Andreevae50f552013-09-13 16:17:41 +0300729 $CI =& get_instance();
Derek Allard2067d1a2008-11-13 22:59:24 +0000730
Andrey Andreevae50f552013-09-13 16:17:41 +0300731 if (isset($CI->form_validation) && is_object($CI->form_validation) && $CI->form_validation->has_rule($field))
Barry Mienydd671972010-10-04 16:33:58 +0200732 {
Andrey Andreevae50f552013-09-13 16:17:41 +0300733 return $CI->form_validation->set_checkbox($field, $value, $default);
734 }
735 elseif (($input = $CI->input->post($field, FALSE)) === NULL)
736 {
737 return ($default === TRUE) ? ' checked="checked"' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000738 }
Andrey Andreeva587a932013-10-23 19:57:46 +0300739
740 $value = (string) $value;
741 if (is_array($input))
Andrey Andreeve8a23a52013-09-13 18:29:29 +0300742 {
Andrey Andreeva587a932013-10-23 19:57:46 +0300743 // Note: in_array('', array(0)) returns TRUE, do not use it
744 foreach ($input as &$v)
745 {
746 if ($value === $v)
747 {
748 return ' checked="checked"';
749 }
750 }
751
752 return '';
Andrey Andreeve8a23a52013-09-13 18:29:29 +0300753 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000754
Andrey Andreevae50f552013-09-13 16:17:41 +0300755 return ($input === $value) ? ' checked="checked"' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000756 }
757}
758
759// ------------------------------------------------------------------------
760
Derek Allard2067d1a2008-11-13 22:59:24 +0000761if ( ! function_exists('set_radio'))
762{
Timothy Warren01b129a2012-04-27 11:36:50 -0400763 /**
764 * Set Radio
765 *
766 * Let's you set the selected value of a radio field via info in the POST array.
767 * If Form Validation is active it retrieves the info from the validation class
768 *
Andrey Andreevae50f552013-09-13 16:17:41 +0300769 * @param string $field
770 * @param string $value
771 * @param bool $default
Timothy Warren01b129a2012-04-27 11:36:50 -0400772 * @return string
773 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000774 function set_radio($field = '', $value = '', $default = FALSE)
775 {
Andrey Andreevae50f552013-09-13 16:17:41 +0300776 $CI =& get_instance();
Derek Allard2067d1a2008-11-13 22:59:24 +0000777
Andrey Andreevae50f552013-09-13 16:17:41 +0300778 if (isset($CI->form_validation) && is_object($CI->form_validation) && $CI->form_validation->has_rule($field))
Derek Allard2067d1a2008-11-13 22:59:24 +0000779 {
Andrey Andreevae50f552013-09-13 16:17:41 +0300780 return $CI->form_validation->set_radio($field, $value, $default);
781 }
782 elseif (($input = $CI->input->post($field, FALSE)) === NULL)
783 {
784 return ($default === TRUE) ? ' checked="checked"' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000785 }
786
Andrey Andreeva587a932013-10-23 19:57:46 +0300787 return ($input === (string) $value) ? ' checked="checked"' : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000788 }
789}
790
791// ------------------------------------------------------------------------
792
Derek Allard2067d1a2008-11-13 22:59:24 +0000793if ( ! function_exists('form_error'))
794{
Timothy Warren01b129a2012-04-27 11:36:50 -0400795 /**
796 * Form Error
797 *
798 * Returns the error for a specific form field. This is a helper for the
799 * form validation class.
800 *
801 * @param string
802 * @param string
803 * @param string
804 * @return string
805 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000806 function form_error($field = '', $prefix = '', $suffix = '')
807 {
808 if (FALSE === ($OBJ =& _get_validation_object()))
809 {
810 return '';
811 }
812
813 return $OBJ->error($field, $prefix, $suffix);
814 }
815}
816
817// ------------------------------------------------------------------------
818
Derek Allard2067d1a2008-11-13 22:59:24 +0000819if ( ! function_exists('validation_errors'))
820{
Timothy Warren01b129a2012-04-27 11:36:50 -0400821 /**
822 * Validation Error String
823 *
824 * Returns all the errors associated with a form submission. This is a helper
825 * function for the form validation class.
826 *
827 * @param string
828 * @param string
829 * @return string
830 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000831 function validation_errors($prefix = '', $suffix = '')
832 {
833 if (FALSE === ($OBJ =& _get_validation_object()))
Greg Akerc83bea62011-04-23 12:12:57 -0500834 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000835 return '';
836 }
837
838 return $OBJ->error_string($prefix, $suffix);
839 }
840}
841
842// ------------------------------------------------------------------------
843
Derek Allard2067d1a2008-11-13 22:59:24 +0000844if ( ! function_exists('_parse_form_attributes'))
845{
Timothy Warren01b129a2012-04-27 11:36:50 -0400846 /**
847 * Parse the form attributes
848 *
849 * Helper function used by some of the form helpers
850 *
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200851 * @param array $attributes List of attributes
852 * @param array $default Default values
Timothy Warren01b129a2012-04-27 11:36:50 -0400853 * @return string
854 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000855 function _parse_form_attributes($attributes, $default)
856 {
857 if (is_array($attributes))
858 {
859 foreach ($default as $key => $val)
860 {
861 if (isset($attributes[$key]))
862 {
863 $default[$key] = $attributes[$key];
864 unset($attributes[$key]);
865 }
866 }
867
868 if (count($attributes) > 0)
869 {
870 $default = array_merge($default, $attributes);
871 }
872 }
873
874 $att = '';
Barry Mienydd671972010-10-04 16:33:58 +0200875
Derek Allard2067d1a2008-11-13 22:59:24 +0000876 foreach ($default as $key => $val)
877 {
Alex Bilbie773ccc32012-06-02 11:11:08 +0100878 if ($key === 'value')
Derek Allard2067d1a2008-11-13 22:59:24 +0000879 {
Andrey Andreev7c4d1062012-11-01 15:14:34 +0200880 $val = form_prep($val);
Derek Allard2067d1a2008-11-13 22:59:24 +0000881 }
Andrey Andreev60b97142012-10-25 16:59:17 +0300882 elseif ($key === 'name' && ! strlen($default['name']))
883 {
884 continue;
885 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000886
Andrey Andreev93a83c72012-03-26 21:24:02 +0300887 $att .= $key.'="'.$val.'" ';
Derek Allard2067d1a2008-11-13 22:59:24 +0000888 }
889
890 return $att;
891 }
892}
893
894// ------------------------------------------------------------------------
895
Derek Allard2067d1a2008-11-13 22:59:24 +0000896if ( ! function_exists('_attributes_to_string'))
897{
Timothy Warren01b129a2012-04-27 11:36:50 -0400898 /**
899 * Attributes To String
900 *
901 * Helper function used by some of the form helpers
902 *
903 * @param mixed
Timothy Warren01b129a2012-04-27 11:36:50 -0400904 * @return string
905 */
vlakoffea19bc42013-07-27 10:07:43 +0200906 function _attributes_to_string($attributes)
Derek Allard2067d1a2008-11-13 22:59:24 +0000907 {
vlakoffbb8b0892013-07-28 22:35:04 +0200908 if (empty($attributes))
909 {
910 return '';
911 }
912
vlakoffea19bc42013-07-27 10:07:43 +0200913 if (is_object($attributes))
Derek Allard2067d1a2008-11-13 22:59:24 +0000914 {
Andrey Andreev93a83c72012-03-26 21:24:02 +0300915 $attributes = (array) $attributes;
Derek Allard2067d1a2008-11-13 22:59:24 +0000916 }
917
vlakoffea19bc42013-07-27 10:07:43 +0200918 if (is_array($attributes))
Derek Allard2067d1a2008-11-13 22:59:24 +0000919 {
Derek Allard3241d732009-09-17 12:17:45 +0000920 $atts = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000921
Derek Allard3241d732009-09-17 12:17:45 +0000922 foreach ($attributes as $key => $val)
923 {
924 $atts .= ' '.$key.'="'.$val.'"';
925 }
926
927 return $atts;
Derek Allard2067d1a2008-11-13 22:59:24 +0000928 }
vlakoffea19bc42013-07-27 10:07:43 +0200929
vlakofff7464752013-07-28 22:23:21 +0200930 if (is_string($attributes))
931 {
Brennan Thompson7a772e52014-02-16 19:22:54 -0700932 return ' '.$attributes;
vlakofff7464752013-07-28 22:23:21 +0200933 }
934
vlakoffea19bc42013-07-27 10:07:43 +0200935 return FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000936 }
937}
938
939// ------------------------------------------------------------------------
940
Derek Allard2067d1a2008-11-13 22:59:24 +0000941if ( ! function_exists('_get_validation_object'))
942{
Timothy Warren01b129a2012-04-27 11:36:50 -0400943 /**
944 * Validation Object
945 *
946 * Determines what the form validation class was instantiated as, fetches
947 * the object and returns it.
948 *
949 * @return mixed
950 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000951 function &_get_validation_object()
952 {
953 $CI =& get_instance();
954
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500955 // We set this as a variable since we're returning by reference.
Derek Allard2067d1a2008-11-13 22:59:24 +0000956 $return = FALSE;
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200957
Andrey Andreev519f87a2013-07-23 17:16:10 +0300958 if (FALSE !== ($object = $CI->load->is_loaded('Form_validation')))
Derek Allard2067d1a2008-11-13 22:59:24 +0000959 {
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500960 if ( ! isset($CI->$object) OR ! is_object($CI->$object))
961 {
962 return $return;
963 }
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200964
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500965 return $CI->$object;
Derek Allard2067d1a2008-11-13 22:59:24 +0000966 }
Andrey Andreev8bf6bb62012-01-06 16:11:04 +0200967
Greg Aker0c9ee4a2011-04-20 09:40:17 -0500968 return $return;
Derek Allard2067d1a2008-11-13 22:59:24 +0000969 }
970}
971
Derek Allard2067d1a2008-11-13 22:59:24 +0000972/* End of file form_helper.php */
Zachary Cardoza9f27a3e2013-03-23 21:59:20 -0700973/* Location: ./system/helpers/form_helper.php */