summaryrefslogtreecommitdiffstats
path: root/system/helpers/form_helper.php
AgeCommit message (Collapse)AuthorFilesLines
2010-01-05updated copyrightsDerek Jones1-1/+1
2009-09-17modified the way accept-charset is addedDerek Allard1-32/+22
2009-09-16(no commit message)Derek Allard1-2/+2
2009-09-16adding accept-charset to form_open()Derek Allard1-1/+22
2009-07-17modification to form_prep() solution. A bandaid really, to return the $str ↵Derek Jones1-1/+5
if the field has already been prepped
2009-07-17modified Form Helper so that form_prep() keeps track of strings it's already ↵Derek Jones1-9/+22
processed, to prevent encoding and prep from occurring more than once
2009-07-10removed entity protection from form_prep() so as to preserve the user's ↵Derek Jones1-11/+0
input when called back into a form element
2009-06-09Changing form_textarea to correctly prep all data.Pascal Kriete1-1/+1
2009-04-22updated copyrights to 2009Derek Jones1-1/+1
2009-04-08added form_multiselect() to form helper to make it easier to create ↵Derek Jones1-0/+25
multiselect fields, and to make it a bit more semantically correct to boot
2009-03-26Modified form_hidden() to accept multi-dimensional arrays.Robin Sowell1-8/+24
2009-03-09Fixed a bug that was not setting the default checkbox/radio/pull-down value ↵Rick Ellis1-3/+3
correctly
2009-02-10Changed the default "type" of form_button() to "button" from "submit" in the ↵Derek Allard1-1/+1
form helper.
2009-02-05wrong var fixDerek Allard1-1/+1
2009-02-05Added the ability to have optgroups in form_dropdown() within the form helper.Derek Allard1-3/+18
2008-11-13Changing EOL style to LFDerek Allard1-962/+962
2008-10-20Added form_prep() call to set_value()Rick Ellis1-2/+2
2008-09-25Fixed incorrect parenthesis in form_open() function. (#5135)Derek Allard1-1/+1
A few doc typo fixes
2008-09-22minor whitespace cleanupDerek Allard1-118/+119
2008-09-20Removed the strict param from in_array() as this was causing some trouble ↵Rick Ellis1-4/+4
with numeric field names
2008-09-13updated copyrightRick Ellis1-1/+1
2008-08-26Switched spaces to tabsRick Ellis1-5/+5
2008-08-26Added some new functions that work with the new form validation classRick Ellis1-14/+321
2008-08-21whitespace fixesDerek Allard1-6/+6
a minor re-ordering of the changelog
2008-08-12Added newline character in between hidden fieldsRick Ellis1-0/+1
2008-07-21Removed added newlines ("\n") from most form and html helper functions.Derek Allard1-8/+13
2008-06-19removed maxlength and size as automatically added attributes in form helperDerek Allard1-1/+1
2008-06-06goofed. Fixed up.Derek Allard1-1/+6
2008-06-06default to post methodDerek Allard1-4/+1
2008-06-06Form helper refactored to allow form_open() and form_fieldset() to accept ↵Derek Allard1-19/+51
arrays or strings as arguments.
2008-05-13Some sweeping syntax changes for consistency:Derek Jones1-35/+35
(! foo) changed to ( ! foo) || changed to OR changed newline standardization code in various places from preg_replace to str_replace
2008-05-11Removed closing PHP tags, replaced with a comment block identifying the end ↵Derek Jones1-1/+3
of the file
2008-05-11Undoing change committed in r1115Derek Jones1-0/+1
2008-05-11removed closing PHP tag from all framework filesDerek Jones1-1/+0
2008-05-06Changed the radio() and checkbox() functions to default to not checked by ↵Derek Allard1-2/+2
default.
2008-05-05Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to ↵Derek Allard1-13/+13
the File Helper. Changed ( ! condition) into (! condition) within the code
2008-03-18added form_button to form helperDerek Allard1-0/+27
2008-01-28added ability to "extend" helpersDerek Jones1-174/+228
* modified Loader to check for prefixed helpers in application/helpers folder * surrounded provided helper functions with if (! function_exists('foo')) conditionals so the user's helper functions take precedent.
2008-01-21replaced www.codeigniter.com with codeigniter.comDerek Jones1-3/+3
2008-01-18ExpressionEngine Dev Team in creditDerek Allard1-2/+2
2008-01-18added check for "multiple" attribute in form_dropdown() (bug# 3261)Derek Allard1-1/+2
2008-01-16Many new Active Record functions, and another whack of stuffDerek Allard1-1/+1
2008-01-16bug(re)fix: I am so smart. s - m - r - tDerek Allard1-1/+1
2008-01-10added support for external urls in form_openDerek Allard1-2/+4
2008-01-09bugfixDerek Allard1-1/+1
2008-01-04added the ability to have multiple selected items in form_dropdown()Derek Allard1-4/+10
2008-01-04Added form_fieldset(), form_fieldset_close(), and form_label() to form helper.Derek Allard1-1/+523
2007-12-17Added form_reset() function to form helper.Derek Allard1-420/+1
2007-10-04Fixed a typo in the docblock comments that had CodeIgniter spelled CodeIgnitor.Derek Allard1-1/+1
2007-07-12type cast $key => $val pair in $options array as strings for friendlier ↵Derek Jones1-0/+3
handling of setting options as 'selected'