Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 1 | <?php |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 6 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 7 | * NOTICE OF LICENSE |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 11 | * 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 Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 19 | * @package CodeIgniter |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 20 | * @author EllisLab Dev Team |
Andrey Andreev | 80500af | 2013-01-01 08:16:53 +0200 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 25 | * @filesource |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 26 | */ |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 27 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 28 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 29 | /** |
| 30 | * CodeIgniter Form Helpers |
| 31 | * |
| 32 | * @package CodeIgniter |
| 33 | * @subpackage Helpers |
| 34 | * @category Helpers |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 35 | * @author EllisLab Dev Team |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 36 | * @link http://codeigniter.com/user_guide/helpers/form_helper.html |
| 37 | */ |
| 38 | |
| 39 | // ------------------------------------------------------------------------ |
| 40 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 41 | if ( ! function_exists('form_open')) |
| 42 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 43 | /** |
| 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 | */ |
vlakoff | ea19bc4 | 2013-07-27 10:07:43 +0200 | [diff] [blame] | 53 | function form_open($action = '', $attributes = array(), $hidden = array()) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 54 | { |
| 55 | $CI =& get_instance(); |
| 56 | |
vlakoff | c4f9c62 | 2013-07-27 10:08:00 +0200 | [diff] [blame] | 57 | // 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 | |
vlakoff | ea19bc4 | 2013-07-27 10:07:43 +0200 | [diff] [blame] | 68 | $attributes = _attributes_to_string($attributes); |
| 69 | |
| 70 | if (stripos($attributes, 'method=') === FALSE) |
Andrey Andreev | 122ca9b | 2013-07-26 18:16:26 +0300 | [diff] [blame] | 71 | { |
| 72 | $attributes .= ' method="post"'; |
| 73 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 74 | |
vlakoff | ea19bc4 | 2013-07-27 10:07:43 +0200 | [diff] [blame] | 75 | if (stripos($attributes, 'accept-charset=') === FALSE) |
| 76 | { |
| 77 | $attributes .= ' accept-charset="'.strtolower(config_item('charset')).'"'; |
| 78 | } |
| 79 | |
vlakoff | ea19bc4 | 2013-07-27 10:07:43 +0200 | [diff] [blame] | 80 | $form = '<form action="'.$action.'"'.$attributes.">\n"; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 81 | |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 82 | // Add CSRF field if enabled, but leave it out for GET requests and requests to external websites |
Andrey Andreev | 122ca9b | 2013-07-26 18:16:26 +0300 | [diff] [blame] | 83 | if ($CI->config->item('csrf_protection') === TRUE && ! (strpos($action, $CI->config->base_url()) === FALSE OR stripos($form, 'method="get"'))) |
Derek Allard | 958543a | 2010-07-22 14:10:26 -0400 | [diff] [blame] | 84 | { |
Greg Aker | 1f6f0ab | 2011-04-07 18:24:53 -0500 | [diff] [blame] | 85 | $hidden[$CI->security->get_csrf_token_name()] = $CI->security->get_csrf_hash(); |
Greg Aker | 28b425a | 2010-09-15 11:43:23 -0500 | [diff] [blame] | 86 | } |
| 87 | |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 88 | if (is_array($hidden) && count($hidden) > 0) |
Greg Aker | 28b425a | 2010-09-15 11:43:23 -0500 | [diff] [blame] | 89 | { |
Andrey Andreev | 3c32a11 | 2012-06-16 18:05:34 +0300 | [diff] [blame] | 90 | $form .= '<div style="display:none;">'.form_hidden($hidden).'</div>'; |
Derek Allard | 958543a | 2010-07-22 14:10:26 -0400 | [diff] [blame] | 91 | } |
| 92 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 93 | return $form; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | // ------------------------------------------------------------------------ |
| 98 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 99 | if ( ! function_exists('form_open_multipart')) |
| 100 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 101 | /** |
| 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 Edmunds | 98963b3 | 2011-08-20 14:17:16 -0500 | [diff] [blame] | 111 | function form_open_multipart($action = '', $attributes = array(), $hidden = array()) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 112 | { |
Derek Allard | 33d4b6a | 2010-01-17 07:23:00 +0000 | [diff] [blame] | 113 | if (is_string($attributes)) |
| 114 | { |
| 115 | $attributes .= ' enctype="multipart/form-data"'; |
| 116 | } |
| 117 | else |
| 118 | { |
| 119 | $attributes['enctype'] = 'multipart/form-data'; |
| 120 | } |
| 121 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 122 | return form_open($action, $attributes, $hidden); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | // ------------------------------------------------------------------------ |
| 127 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 128 | if ( ! function_exists('form_hidden')) |
| 129 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 130 | /** |
| 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 Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 136 | * @param mixed $name Field name |
| 137 | * @param string $value Field value |
| 138 | * @param bool $recursing |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 139 | * @return string |
| 140 | */ |
Robin Sowell | 57fe410 | 2009-03-26 18:58:46 +0000 | [diff] [blame] | 141 | function form_hidden($name, $value = '', $recursing = FALSE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 142 | { |
Robin Sowell | 57fe410 | 2009-03-26 18:58:46 +0000 | [diff] [blame] | 143 | static $form; |
| 144 | |
| 145 | if ($recursing === FALSE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 146 | { |
Robin Sowell | 57fe410 | 2009-03-26 18:58:46 +0000 | [diff] [blame] | 147 | $form = "\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 148 | } |
| 149 | |
Robin Sowell | 57fe410 | 2009-03-26 18:58:46 +0000 | [diff] [blame] | 150 | if (is_array($name)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 151 | { |
Robin Sowell | 57fe410 | 2009-03-26 18:58:46 +0000 | [diff] [blame] | 152 | 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 Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 161 | $form .= '<input type="hidden" name="'.$name.'" value="'.form_prep($value)."\" />\n"; |
Robin Sowell | 57fe410 | 2009-03-26 18:58:46 +0000 | [diff] [blame] | 162 | } |
| 163 | else |
| 164 | { |
| 165 | foreach ($value as $k => $v) |
| 166 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 167 | $k = is_int($k) ? '' : $k; |
Robin Sowell | 57fe410 | 2009-03-26 18:58:46 +0000 | [diff] [blame] | 168 | form_hidden($name.'['.$k.']', $v, TRUE); |
| 169 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | return $form; |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | // ------------------------------------------------------------------------ |
| 177 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 178 | if ( ! function_exists('form_input')) |
| 179 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 180 | /** |
| 181 | * Text Input Field |
| 182 | * |
| 183 | * @param mixed |
| 184 | * @param string |
| 185 | * @param string |
| 186 | * @return string |
| 187 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 188 | function form_input($data = '', $value = '', $extra = '') |
| 189 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 190 | $defaults = array('type' => 'text', 'name' => ( ! is_array($data) ? $data : ''), 'value' => $value); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 191 | |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 192 | return '<input '._parse_form_attributes($data, $defaults).$extra." />\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 193 | } |
| 194 | } |
| 195 | |
| 196 | // ------------------------------------------------------------------------ |
| 197 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 198 | if ( ! function_exists('form_password')) |
| 199 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 200 | /** |
| 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 Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 210 | 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 Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 224 | if ( ! function_exists('form_upload')) |
| 225 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 226 | /** |
| 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 Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 236 | function form_upload($data = '', $value = '', $extra = '') |
| 237 | { |
Bo-Yi Wu | 06ddcf0 | 2013-02-18 08:52:05 +0800 | [diff] [blame] | 238 | $defaults = array('type' => 'file', 'name' => ''); |
Andrey Andreev | 99ba3a2 | 2013-02-15 22:42:22 +0200 | [diff] [blame] | 239 | is_array($data) OR $data = array('name' => $data); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 240 | $data['type'] = 'file'; |
Andrey Andreev | 99ba3a2 | 2013-02-15 22:42:22 +0200 | [diff] [blame] | 241 | return '<input '._parse_form_attributes($data, $defaults).$extra." />\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 242 | } |
| 243 | } |
| 244 | |
| 245 | // ------------------------------------------------------------------------ |
| 246 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 247 | if ( ! function_exists('form_textarea')) |
| 248 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 249 | /** |
| 250 | * Textarea field |
| 251 | * |
Andrey Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 252 | * @param mixed $data |
| 253 | * @param string $value |
| 254 | * @param string $extra |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 255 | * @return string |
| 256 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 257 | function form_textarea($data = '', $value = '', $extra = '') |
| 258 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 259 | $defaults = array('name' => ( ! is_array($data) ? $data : ''), 'cols' => '40', 'rows' => '10'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 260 | |
| 261 | if ( ! is_array($data) OR ! isset($data['value'])) |
| 262 | { |
| 263 | $val = $value; |
| 264 | } |
| 265 | else |
| 266 | { |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 267 | $val = $data['value']; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 268 | unset($data['value']); // textareas don't use the value attribute |
| 269 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 270 | |
Andrey Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 271 | return '<textarea '._parse_form_attributes($data, $defaults).$extra.'>'.form_prep($val, TRUE)."</textarea>\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 272 | } |
| 273 | } |
| 274 | |
| 275 | // ------------------------------------------------------------------------ |
| 276 | |
Derek Jones | 68788d5 | 2010-03-05 10:11:31 -0600 | [diff] [blame] | 277 | if ( ! function_exists('form_multiselect')) |
Derek Jones | 2639929 | 2009-04-08 16:14:17 +0000 | [diff] [blame] | 278 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 279 | /** |
| 280 | * Multi-select menu |
| 281 | * |
| 282 | * @param string |
| 283 | * @param array |
| 284 | * @param mixed |
| 285 | * @param string |
| 286 | * @return string |
| 287 | */ |
Derek Jones | 2639929 | 2009-04-08 16:14:17 +0000 | [diff] [blame] | 288 | function form_multiselect($name = '', $options = array(), $selected = array(), $extra = '') |
| 289 | { |
| 290 | if ( ! strpos($extra, 'multiple')) |
| 291 | { |
| 292 | $extra .= ' multiple="multiple"'; |
| 293 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 294 | |
Derek Jones | 2639929 | 2009-04-08 16:14:17 +0000 | [diff] [blame] | 295 | return form_dropdown($name, $options, $selected, $extra); |
| 296 | } |
| 297 | } |
| 298 | |
| 299 | // -------------------------------------------------------------------- |
| 300 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 301 | if ( ! function_exists('form_dropdown')) |
| 302 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 303 | /** |
| 304 | * Drop-down Menu |
| 305 | * |
Andrey Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 306 | * @param mixed $name |
| 307 | * @param mixed $options |
| 308 | * @param mixed $selected |
| 309 | * @param mixed $extra |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 310 | * @return string |
| 311 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 312 | function form_dropdown($name = '', $options = array(), $selected = array(), $extra = '') |
| 313 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 314 | // 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(); |
| 319 | isset($name['extra']) OR $name['extra'] = array(); |
| 320 | |
| 321 | return form_dropdown($name['name'], $name['options'], $name['selected'], $name['extra']); |
| 322 | } |
| 323 | |
Andrey Andreev | 582ebcb | 2012-10-27 00:52:15 +0300 | [diff] [blame] | 324 | is_array($selected) OR $selected = array($selected); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 325 | |
| 326 | // If no selected state was submitted we will attempt to set it automatically |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 327 | if (count($selected) === 0 && isset($_POST[$name])) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 328 | { |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 329 | $selected = array($_POST[$name]); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 330 | } |
| 331 | |
Michiel Vugteveen | 9640a03 | 2012-06-06 20:20:27 +0200 | [diff] [blame] | 332 | if ($extra != '') |
| 333 | { |
| 334 | $extra = ' '.$extra; |
| 335 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 336 | |
| 337 | $multiple = (count($selected) > 1 && strpos($extra, 'multiple') === FALSE) ? ' multiple="multiple"' : ''; |
| 338 | |
| 339 | $form = '<select name="'.$name.'"'.$extra.$multiple.">\n"; |
Robin Sowell | 57fe410 | 2009-03-26 18:58:46 +0000 | [diff] [blame] | 340 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 341 | foreach ($options as $key => $val) |
| 342 | { |
| 343 | $key = (string) $key; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 344 | |
Andrey Andreev | 6b114ae | 2012-07-13 12:05:52 +0300 | [diff] [blame] | 345 | if (is_array($val)) |
Derek Allard | 78a5fc9 | 2009-02-05 16:34:35 +0000 | [diff] [blame] | 346 | { |
Andrey Andreev | 6b114ae | 2012-07-13 12:05:52 +0300 | [diff] [blame] | 347 | if (empty($val)) |
| 348 | { |
| 349 | continue; |
| 350 | } |
| 351 | |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 352 | $form .= '<optgroup label="'.$key."\">\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 353 | |
Derek Allard | 78a5fc9 | 2009-02-05 16:34:35 +0000 | [diff] [blame] | 354 | foreach ($val as $optgroup_key => $optgroup_val) |
| 355 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 356 | $sel = in_array($optgroup_key, $selected) ? ' selected="selected"' : ''; |
Andrey Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 357 | $form .= '<option value="'.form_prep($optgroup_key).'"'.$sel.'>' |
Andrey Andreev | 582ebcb | 2012-10-27 00:52:15 +0300 | [diff] [blame] | 358 | .(string) $optgroup_val."</option>\n"; |
Derek Allard | 78a5fc9 | 2009-02-05 16:34:35 +0000 | [diff] [blame] | 359 | } |
| 360 | |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 361 | $form .= "</optgroup>\n"; |
Derek Allard | 78a5fc9 | 2009-02-05 16:34:35 +0000 | [diff] [blame] | 362 | } |
| 363 | else |
| 364 | { |
Andrey Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 365 | $form .= '<option value="'.form_prep($key).'"' |
Andrey Andreev | 582ebcb | 2012-10-27 00:52:15 +0300 | [diff] [blame] | 366 | .(in_array($key, $selected) ? ' selected="selected"' : '').'>' |
| 367 | .(string) $val."</option>\n"; |
Derek Allard | 78a5fc9 | 2009-02-05 16:34:35 +0000 | [diff] [blame] | 368 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 369 | } |
| 370 | |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 371 | return $form."</select>\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 372 | } |
| 373 | } |
| 374 | |
| 375 | // ------------------------------------------------------------------------ |
| 376 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 377 | if ( ! function_exists('form_checkbox')) |
| 378 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 379 | /** |
| 380 | * Checkbox Field |
| 381 | * |
| 382 | * @param mixed |
| 383 | * @param string |
| 384 | * @param bool |
| 385 | * @param string |
| 386 | * @return string |
| 387 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 388 | function form_checkbox($data = '', $value = '', $checked = FALSE, $extra = '') |
| 389 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 390 | $defaults = array('type' => 'checkbox', 'name' => ( ! is_array($data) ? $data : ''), 'value' => $value); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 391 | |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 392 | if (is_array($data) && array_key_exists('checked', $data)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 393 | { |
| 394 | $checked = $data['checked']; |
| 395 | |
Michiel Vugteveen | 910ff7a | 2012-06-06 20:03:14 +0200 | [diff] [blame] | 396 | if ($checked == FALSE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 397 | { |
| 398 | unset($data['checked']); |
| 399 | } |
| 400 | else |
| 401 | { |
| 402 | $data['checked'] = 'checked'; |
| 403 | } |
| 404 | } |
| 405 | |
Michiel Vugteveen | 910ff7a | 2012-06-06 20:03:14 +0200 | [diff] [blame] | 406 | if ($checked == TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 407 | { |
| 408 | $defaults['checked'] = 'checked'; |
| 409 | } |
| 410 | else |
| 411 | { |
| 412 | unset($defaults['checked']); |
| 413 | } |
| 414 | |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 415 | return '<input '._parse_form_attributes($data, $defaults).$extra." />\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 416 | } |
| 417 | } |
| 418 | |
| 419 | // ------------------------------------------------------------------------ |
| 420 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 421 | if ( ! function_exists('form_radio')) |
| 422 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 423 | /** |
| 424 | * Radio Button |
| 425 | * |
| 426 | * @param mixed |
| 427 | * @param string |
| 428 | * @param bool |
| 429 | * @param string |
| 430 | * @return string |
| 431 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 432 | function form_radio($data = '', $value = '', $checked = FALSE, $extra = '') |
| 433 | { |
| 434 | if ( ! is_array($data)) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 435 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 436 | $data = array('name' => $data); |
| 437 | } |
| 438 | |
| 439 | $data['type'] = 'radio'; |
| 440 | return form_checkbox($data, $value, $checked, $extra); |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | // ------------------------------------------------------------------------ |
| 445 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 446 | if ( ! function_exists('form_submit')) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 447 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 448 | /** |
| 449 | * Submit Button |
| 450 | * |
| 451 | * @param mixed |
| 452 | * @param string |
| 453 | * @param string |
| 454 | * @return string |
| 455 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 456 | function form_submit($data = '', $value = '', $extra = '') |
| 457 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 458 | $defaults = array('type' => 'submit', 'name' => ( ! is_array($data) ? $data : ''), 'value' => $value); |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 459 | return '<input '._parse_form_attributes($data, $defaults).$extra." />\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 460 | } |
| 461 | } |
| 462 | |
| 463 | // ------------------------------------------------------------------------ |
| 464 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 465 | if ( ! function_exists('form_reset')) |
| 466 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 467 | /** |
| 468 | * Reset Button |
| 469 | * |
| 470 | * @param mixed |
| 471 | * @param string |
| 472 | * @param string |
| 473 | * @return string |
| 474 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 475 | function form_reset($data = '', $value = '', $extra = '') |
| 476 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 477 | $defaults = array('type' => 'reset', 'name' => ( ! is_array($data) ? $data : ''), 'value' => $value); |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 478 | return '<input '._parse_form_attributes($data, $defaults).$extra." />\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 479 | } |
| 480 | } |
| 481 | |
| 482 | // ------------------------------------------------------------------------ |
| 483 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 484 | if ( ! function_exists('form_button')) |
| 485 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 486 | /** |
| 487 | * Form Button |
| 488 | * |
| 489 | * @param mixed |
| 490 | * @param string |
| 491 | * @param string |
| 492 | * @return string |
| 493 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 494 | function form_button($data = '', $content = '', $extra = '') |
| 495 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 496 | $defaults = array('name' => ( ! is_array($data) ? $data : ''), 'type' => 'button'); |
| 497 | if (is_array($data) && isset($data['content'])) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 498 | { |
| 499 | $content = $data['content']; |
| 500 | unset($data['content']); // content is not an attribute |
| 501 | } |
| 502 | |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 503 | return '<button '._parse_form_attributes($data, $defaults).$extra.'>'.$content."</button>\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 504 | } |
| 505 | } |
| 506 | |
| 507 | // ------------------------------------------------------------------------ |
| 508 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 509 | if ( ! function_exists('form_label')) |
| 510 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 511 | /** |
| 512 | * Form Label Tag |
| 513 | * |
| 514 | * @param string The text to appear onscreen |
| 515 | * @param string The id the label applies to |
| 516 | * @param string Additional attributes |
| 517 | * @return string |
| 518 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 519 | function form_label($label_text = '', $id = '', $attributes = array()) |
| 520 | { |
| 521 | |
| 522 | $label = '<label'; |
| 523 | |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 524 | if ($id !== '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 525 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 526 | $label .= ' for="'.$id.'"'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 527 | } |
| 528 | |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 529 | if (is_array($attributes) && count($attributes) > 0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 530 | { |
| 531 | foreach ($attributes as $key => $val) |
| 532 | { |
| 533 | $label .= ' '.$key.'="'.$val.'"'; |
| 534 | } |
| 535 | } |
| 536 | |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 537 | return $label.'>'.$label_text.'</label>'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 538 | } |
| 539 | } |
| 540 | |
| 541 | // ------------------------------------------------------------------------ |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 542 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 543 | if ( ! function_exists('form_fieldset')) |
| 544 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 545 | /** |
| 546 | * Fieldset Tag |
| 547 | * |
| 548 | * Used to produce <fieldset><legend>text</legend>. To close fieldset |
| 549 | * use form_fieldset_close() |
| 550 | * |
| 551 | * @param string The legend text |
vlakoff | ea19bc4 | 2013-07-27 10:07:43 +0200 | [diff] [blame] | 552 | * @param array Additional attributes |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 553 | * @return string |
| 554 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 555 | function form_fieldset($legend_text = '', $attributes = array()) |
| 556 | { |
vlakoff | ea19bc4 | 2013-07-27 10:07:43 +0200 | [diff] [blame] | 557 | $fieldset = '<fieldset'._attributes_to_string($attributes).">\n"; |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 558 | if ($legend_text !== '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 559 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 560 | return $fieldset.'<legend>'.$legend_text."</legend>\n"; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | return $fieldset; |
| 564 | } |
| 565 | } |
| 566 | |
| 567 | // ------------------------------------------------------------------------ |
| 568 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 569 | if ( ! function_exists('form_fieldset_close')) |
| 570 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 571 | /** |
| 572 | * Fieldset Close Tag |
| 573 | * |
| 574 | * @param string |
| 575 | * @return string |
| 576 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 577 | function form_fieldset_close($extra = '') |
| 578 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 579 | return '</fieldset>'.$extra; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 580 | } |
| 581 | } |
| 582 | |
| 583 | // ------------------------------------------------------------------------ |
| 584 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 585 | if ( ! function_exists('form_close')) |
| 586 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 587 | /** |
| 588 | * Form Close Tag |
| 589 | * |
| 590 | * @param string |
| 591 | * @return string |
| 592 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 593 | function form_close($extra = '') |
| 594 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 595 | return '</form>'.$extra; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 596 | } |
| 597 | } |
| 598 | |
| 599 | // ------------------------------------------------------------------------ |
| 600 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 601 | if ( ! function_exists('form_prep')) |
| 602 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 603 | /** |
| 604 | * Form Prep |
| 605 | * |
| 606 | * Formats text so that it can be safely placed in a form field in the event it has HTML tags. |
| 607 | * |
Andrey Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 608 | * @param string|string[] $str Value to escape |
| 609 | * @param bool $is_textarea Whether we're escaping for a textarea element |
| 610 | * @return string|string[] Escaped values |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 611 | */ |
Andrey Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 612 | function form_prep($str = '', $is_textarea = FALSE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 613 | { |
Andrey Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 614 | if (is_array($str)) |
| 615 | { |
| 616 | foreach (array_keys($str) as $key) |
| 617 | { |
| 618 | $str[$key] = form_prep($str[$key], $is_textarea); |
| 619 | } |
| 620 | |
| 621 | return $str; |
| 622 | } |
| 623 | |
| 624 | if ($is_textarea === TRUE) |
| 625 | { |
| 626 | return str_replace(array('<', '>'), array('<', '>'), stripslashes($str)); |
| 627 | } |
| 628 | |
Andrey Andreev | 075f6fa | 2012-11-01 15:18:44 +0200 | [diff] [blame] | 629 | return str_replace(array("'", '"'), array(''', '"'), stripslashes($str)); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 630 | } |
| 631 | } |
| 632 | |
| 633 | // ------------------------------------------------------------------------ |
| 634 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 635 | if ( ! function_exists('set_value')) |
| 636 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 637 | /** |
| 638 | * Form Value |
| 639 | * |
| 640 | * Grabs a value from the POST array for the specified field so you can |
| 641 | * re-populate an input field or textarea. If Form Validation |
| 642 | * is active it retrieves the info from the validation class |
| 643 | * |
Andrey Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 644 | * @param string $field Field name |
| 645 | * @param string $default Default value |
| 646 | * @param bool $is_textarea Whether the field is a textarea element |
| 647 | * @return string |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 648 | */ |
Andrey Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 649 | function set_value($field = '', $default = '', $is_textarea = FALSE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 650 | { |
nisheeth-barthwal | 77236e0 | 2013-03-25 23:42:36 +0530 | [diff] [blame] | 651 | $CI =& get_instance(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 652 | |
nisheeth-barthwal | 47ea5a8 | 2013-03-26 18:57:28 +0530 | [diff] [blame] | 653 | $value = (isset($CI->form_validation) && is_object($CI->form_validation) && $CI->form_validation->has_rule($field)) |
| 654 | ? $CI->form_validation->set_value($field, $default) |
| 655 | : $CI->input->post($field, FALSE); |
| 656 | |
| 657 | return form_prep($value === NULL ? $default : $value, $is_textarea); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 658 | } |
| 659 | } |
| 660 | |
| 661 | // ------------------------------------------------------------------------ |
| 662 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 663 | if ( ! function_exists('set_select')) |
| 664 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 665 | /** |
| 666 | * Set Select |
| 667 | * |
| 668 | * Let's you set the selected value of a <select> menu via data in the POST array. |
| 669 | * If Form Validation is active it retrieves the info from the validation class |
| 670 | * |
| 671 | * @param string |
| 672 | * @param string |
| 673 | * @param bool |
| 674 | * @return string |
| 675 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 676 | function set_select($field = '', $value = '', $default = FALSE) |
| 677 | { |
| 678 | $OBJ =& _get_validation_object(); |
| 679 | |
| 680 | if ($OBJ === FALSE) |
| 681 | { |
| 682 | if ( ! isset($_POST[$field])) |
| 683 | { |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 684 | if (count($_POST) === 0 && $default === TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 685 | { |
| 686 | return ' selected="selected"'; |
| 687 | } |
| 688 | return ''; |
| 689 | } |
| 690 | |
| 691 | $field = $_POST[$field]; |
| 692 | |
| 693 | if (is_array($field)) |
| 694 | { |
| 695 | if ( ! in_array($value, $field)) |
| 696 | { |
| 697 | return ''; |
| 698 | } |
| 699 | } |
Michiel Vugteveen | a6f3423 | 2012-06-07 10:14:29 +0200 | [diff] [blame] | 700 | elseif (($field == '' OR $value == '') OR $field !== $value) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 701 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 702 | return ''; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | return ' selected="selected"'; |
| 706 | } |
| 707 | |
| 708 | return $OBJ->set_select($field, $value, $default); |
| 709 | } |
| 710 | } |
| 711 | |
| 712 | // ------------------------------------------------------------------------ |
| 713 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 714 | if ( ! function_exists('set_checkbox')) |
| 715 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 716 | /** |
| 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 Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 727 | function set_checkbox($field = '', $value = '', $default = FALSE) |
| 728 | { |
| 729 | $OBJ =& _get_validation_object(); |
| 730 | |
| 731 | if ($OBJ === FALSE) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 732 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 733 | if ( ! isset($_POST[$field])) |
| 734 | { |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 735 | if (count($_POST) === 0 && $default === TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 736 | { |
| 737 | return ' checked="checked"'; |
| 738 | } |
| 739 | return ''; |
| 740 | } |
| 741 | |
| 742 | $field = $_POST[$field]; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 743 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 744 | if (is_array($field)) |
| 745 | { |
| 746 | if ( ! in_array($value, $field)) |
| 747 | { |
| 748 | return ''; |
| 749 | } |
| 750 | } |
Michiel Vugteveen | a6f3423 | 2012-06-07 10:14:29 +0200 | [diff] [blame] | 751 | elseif (($field == '' OR $value == '') OR $field !== $value) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 752 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 753 | return ''; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | return ' checked="checked"'; |
| 757 | } |
| 758 | |
| 759 | return $OBJ->set_checkbox($field, $value, $default); |
| 760 | } |
| 761 | } |
| 762 | |
| 763 | // ------------------------------------------------------------------------ |
| 764 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 765 | if ( ! function_exists('set_radio')) |
| 766 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 767 | /** |
| 768 | * Set Radio |
| 769 | * |
| 770 | * Let's you set the selected value of a radio field via info in the POST array. |
| 771 | * If Form Validation is active it retrieves the info from the validation class |
| 772 | * |
| 773 | * @param string |
| 774 | * @param string |
| 775 | * @param bool |
| 776 | * @return string |
| 777 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 778 | function set_radio($field = '', $value = '', $default = FALSE) |
| 779 | { |
| 780 | $OBJ =& _get_validation_object(); |
| 781 | |
| 782 | if ($OBJ === FALSE) |
| 783 | { |
| 784 | if ( ! isset($_POST[$field])) |
| 785 | { |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 786 | if (count($_POST) === 0 && $default === TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 787 | { |
| 788 | return ' checked="checked"'; |
| 789 | } |
| 790 | return ''; |
| 791 | } |
| 792 | |
| 793 | $field = $_POST[$field]; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 794 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 795 | if (is_array($field)) |
| 796 | { |
| 797 | if ( ! in_array($value, $field)) |
| 798 | { |
| 799 | return ''; |
| 800 | } |
| 801 | } |
| 802 | else |
| 803 | { |
Michiel Vugteveen | a6f3423 | 2012-06-07 10:14:29 +0200 | [diff] [blame] | 804 | if (($field == '' OR $value == '') OR $field !== $value) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 805 | { |
| 806 | return ''; |
| 807 | } |
| 808 | } |
| 809 | |
| 810 | return ' checked="checked"'; |
| 811 | } |
| 812 | |
| 813 | return $OBJ->set_radio($field, $value, $default); |
| 814 | } |
| 815 | } |
| 816 | |
| 817 | // ------------------------------------------------------------------------ |
| 818 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 819 | if ( ! function_exists('form_error')) |
| 820 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 821 | /** |
| 822 | * Form Error |
| 823 | * |
| 824 | * Returns the error for a specific form field. This is a helper for the |
| 825 | * form validation class. |
| 826 | * |
| 827 | * @param string |
| 828 | * @param string |
| 829 | * @param string |
| 830 | * @return string |
| 831 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 832 | function form_error($field = '', $prefix = '', $suffix = '') |
| 833 | { |
| 834 | if (FALSE === ($OBJ =& _get_validation_object())) |
| 835 | { |
| 836 | return ''; |
| 837 | } |
| 838 | |
| 839 | return $OBJ->error($field, $prefix, $suffix); |
| 840 | } |
| 841 | } |
| 842 | |
| 843 | // ------------------------------------------------------------------------ |
| 844 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 845 | if ( ! function_exists('validation_errors')) |
| 846 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 847 | /** |
| 848 | * Validation Error String |
| 849 | * |
| 850 | * Returns all the errors associated with a form submission. This is a helper |
| 851 | * function for the form validation class. |
| 852 | * |
| 853 | * @param string |
| 854 | * @param string |
| 855 | * @return string |
| 856 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 857 | function validation_errors($prefix = '', $suffix = '') |
| 858 | { |
| 859 | if (FALSE === ($OBJ =& _get_validation_object())) |
Greg Aker | c83bea6 | 2011-04-23 12:12:57 -0500 | [diff] [blame] | 860 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 861 | return ''; |
| 862 | } |
| 863 | |
| 864 | return $OBJ->error_string($prefix, $suffix); |
| 865 | } |
| 866 | } |
| 867 | |
| 868 | // ------------------------------------------------------------------------ |
| 869 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 870 | if ( ! function_exists('_parse_form_attributes')) |
| 871 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 872 | /** |
| 873 | * Parse the form attributes |
| 874 | * |
| 875 | * Helper function used by some of the form helpers |
| 876 | * |
Andrey Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 877 | * @param array $attributes List of attributes |
| 878 | * @param array $default Default values |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 879 | * @return string |
| 880 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 881 | function _parse_form_attributes($attributes, $default) |
| 882 | { |
| 883 | if (is_array($attributes)) |
| 884 | { |
| 885 | foreach ($default as $key => $val) |
| 886 | { |
| 887 | if (isset($attributes[$key])) |
| 888 | { |
| 889 | $default[$key] = $attributes[$key]; |
| 890 | unset($attributes[$key]); |
| 891 | } |
| 892 | } |
| 893 | |
| 894 | if (count($attributes) > 0) |
| 895 | { |
| 896 | $default = array_merge($default, $attributes); |
| 897 | } |
| 898 | } |
| 899 | |
| 900 | $att = ''; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 901 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 902 | foreach ($default as $key => $val) |
| 903 | { |
Alex Bilbie | 773ccc3 | 2012-06-02 11:11:08 +0100 | [diff] [blame] | 904 | if ($key === 'value') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 905 | { |
Andrey Andreev | 7c4d106 | 2012-11-01 15:14:34 +0200 | [diff] [blame] | 906 | $val = form_prep($val); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 907 | } |
Andrey Andreev | 60b9714 | 2012-10-25 16:59:17 +0300 | [diff] [blame] | 908 | elseif ($key === 'name' && ! strlen($default['name'])) |
| 909 | { |
| 910 | continue; |
| 911 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 912 | |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 913 | $att .= $key.'="'.$val.'" '; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | return $att; |
| 917 | } |
| 918 | } |
| 919 | |
| 920 | // ------------------------------------------------------------------------ |
| 921 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 922 | if ( ! function_exists('_attributes_to_string')) |
| 923 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 924 | /** |
| 925 | * Attributes To String |
| 926 | * |
| 927 | * Helper function used by some of the form helpers |
| 928 | * |
| 929 | * @param mixed |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 930 | * @return string |
| 931 | */ |
vlakoff | ea19bc4 | 2013-07-27 10:07:43 +0200 | [diff] [blame] | 932 | function _attributes_to_string($attributes) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 933 | { |
vlakoff | ea19bc4 | 2013-07-27 10:07:43 +0200 | [diff] [blame] | 934 | if (is_object($attributes)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 935 | { |
Andrey Andreev | 93a83c7 | 2012-03-26 21:24:02 +0300 | [diff] [blame] | 936 | $attributes = (array) $attributes; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 937 | } |
| 938 | |
vlakoff | ea19bc4 | 2013-07-27 10:07:43 +0200 | [diff] [blame] | 939 | if (is_array($attributes)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 940 | { |
Derek Allard | 3241d73 | 2009-09-17 12:17:45 +0000 | [diff] [blame] | 941 | $atts = ''; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 942 | |
Derek Allard | 3241d73 | 2009-09-17 12:17:45 +0000 | [diff] [blame] | 943 | foreach ($attributes as $key => $val) |
| 944 | { |
| 945 | $atts .= ' '.$key.'="'.$val.'"'; |
| 946 | } |
| 947 | |
| 948 | return $atts; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 949 | } |
vlakoff | ea19bc4 | 2013-07-27 10:07:43 +0200 | [diff] [blame] | 950 | |
vlakoff | f746475 | 2013-07-28 22:23:21 +0200 | [diff] [blame^] | 951 | if (is_string($attributes)) |
| 952 | { |
| 953 | return ($attributes === '' ? '' : ' '.$attributes); |
| 954 | } |
| 955 | |
vlakoff | ea19bc4 | 2013-07-27 10:07:43 +0200 | [diff] [blame] | 956 | return FALSE; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 957 | } |
| 958 | } |
| 959 | |
| 960 | // ------------------------------------------------------------------------ |
| 961 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 962 | if ( ! function_exists('_get_validation_object')) |
| 963 | { |
Timothy Warren | 01b129a | 2012-04-27 11:36:50 -0400 | [diff] [blame] | 964 | /** |
| 965 | * Validation Object |
| 966 | * |
| 967 | * Determines what the form validation class was instantiated as, fetches |
| 968 | * the object and returns it. |
| 969 | * |
| 970 | * @return mixed |
| 971 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 972 | function &_get_validation_object() |
| 973 | { |
| 974 | $CI =& get_instance(); |
| 975 | |
Greg Aker | 0c9ee4a | 2011-04-20 09:40:17 -0500 | [diff] [blame] | 976 | // We set this as a variable since we're returning by reference. |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 977 | $return = FALSE; |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 978 | |
Andrey Andreev | 519f87a | 2013-07-23 17:16:10 +0300 | [diff] [blame] | 979 | if (FALSE !== ($object = $CI->load->is_loaded('Form_validation'))) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 980 | { |
Greg Aker | 0c9ee4a | 2011-04-20 09:40:17 -0500 | [diff] [blame] | 981 | if ( ! isset($CI->$object) OR ! is_object($CI->$object)) |
| 982 | { |
| 983 | return $return; |
| 984 | } |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 985 | |
Greg Aker | 0c9ee4a | 2011-04-20 09:40:17 -0500 | [diff] [blame] | 986 | return $CI->$object; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 987 | } |
Andrey Andreev | 8bf6bb6 | 2012-01-06 16:11:04 +0200 | [diff] [blame] | 988 | |
Greg Aker | 0c9ee4a | 2011-04-20 09:40:17 -0500 | [diff] [blame] | 989 | return $return; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 990 | } |
| 991 | } |
| 992 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 993 | /* End of file form_helper.php */ |
Zachary Cardoza | 9f27a3e | 2013-03-23 21:59:20 -0700 | [diff] [blame] | 994 | /* Location: ./system/helpers/form_helper.php */ |