summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/helpers
AgeCommit message (Collapse)AuthorFilesLines
2013-01-24Move db_select() call from CI_DB_driver::initialize() to db_connect()Andrey Andreev1-1/+1
so that it's only called by drivers that need it ('mysql', 'mssql'). As proposed in issue #2187.
2013-01-23Removed slash from URI helper docMelvin Lammerts1-2/+2
In my current projects I don't see '/controller/method' but 'controller/method' when calling uri_string().
2012-11-26Language helper lang() to accept optional HTML attributesAndrey Andreev1-5/+5
(an improved version of PR #1235)
2012-11-22Added support for stream-like downloads of existing files to force_download()Andrey Andreev1-5/+7
Based on code/ideas from PR #365, #1254
2012-11-09Polish docs for URL and XML helpers and deprecate obsolete options for ↵Andrey Andreev3-132/+181
String helper random_string() and URL helper url_title()
2012-11-08Polish docs for String, Text and Typography helpersAndrey Andreev3-90/+196
2012-11-08Deprecate String helper trim_slashes()Andrey Andreev1-10/+18
trim(, '/') is even shorter ...
2012-11-08Polish docs for HTML, Inflector, Language, Number, Path, Security and Smiley ↵Andrey Andreev7-254/+352
helpers Also fixed a DB_cache bug introduced in previous commit and removed an unused parameter in a smiley helper
2012-11-08Polish docs for the File and Form helpersAndrey Andreev2-209/+463
2012-11-08Polish docs for Array, CAPTCHA, Cookie, Date, Directory and Download helpersAndrey Andreev5-326/+275
2012-11-08Deprecate the Email helperAndrey Andreev1-15/+33
2012-11-06Fix issue #1978Andrey Andreev1-3/+2
2012-11-01Fix issue #1953 (form values being escaped twice)Andrey Andreev1-23/+21
Re-instaing an improved form_prep() function, reverting most of the changes from 74ffd17ab06327ca62ddfe28a186cae7ba6bd459.
2012-10-27Deprecate string helper repeater() (an alias for str_repeat())Andrey Andreev1-0/+3
2012-10-26Deprecated form helper function form_prep().Andrey Andreev1-24/+23
This function has been broken for YEARS and it's value-caching logic has only introduced various problems. We have html_escape() since CI 2.1.0 which is a perfect replacement, so it should be used instead. Fixes #228 & #1630
2012-10-05Remove an empty lineAndrey Andreev1-1/+1
2012-10-05Merge upstream branchAndrey Andreev8-166/+162
2012-09-17redirect() documentation: add a note for IIS usersvlakoff1-0/+4
2012-09-12Better server test in redirect() of URL helpervlakoff1-1/+1
"Location" header bugs are specific to IIS; previous test was matching all HTTP servers under Windows. This test isn't perfect yet ($_SERVER['SERVER_SOFTWARE'], which corresponds to the "Server" header of HTTP response, might be missing), but there is no perfect test. "Refresh" method makes the window blank for quite a noticeable time, so let's not affect other servers because of IIS.
2012-08-31fix issue #1719 and update ip address length on captcha helperBo-Yi Wu1-1/+1
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2012-07-29Added documentation for mailto function.InFog1-1/+6
2012-07-06t commit -s 'Added info about set_*() functions and form_validation class inaditya1-0/+4
the Form Helper documentation.' Signed-off-by: aditya <adityamenon90@gmail.com>
2012-07-04Deprecate Date helper standard_date()Andrey Andreev1-11/+18
2012-07-02Update Array Helper documentationvlakoff1-17/+17
default value of the "default value" parameter has changed in element() and elements() methods
2012-06-26Fixing various Sphinx bugs and syntax errors in docsDerek Jones2-110/+61
2012-06-22Added optional fourth parameter to timezone_menuMat Whitney1-12/+15
allows setting one or more attributes on the generated select tag. This allows passing attributes needed for Section 508 compliance § 1194.22(n), such as an id. http://access-board.gov/sec508/guide/1194.22.htm#(n) http://www.w3.org/TR/WCAG10-HTML-TECHS/#forms-labels
2012-06-16anchor_popup() improvementsAndrey Andreev1-9/+17
2012-06-15Fix nice_date() documentationAndrey Andreev1-5/+7
2012-06-13Fixed some stuff in documentation.Iban Eguia1-3/+6
2012-06-12Changed the config parameter. The session's _get_time() function has also ↵Iban Eguia1-4/+2
changed.
2012-06-09Fixed timezone change in index.phpIban Eguia1-1/+2
Now it does not ever change the local timezone, and it adds the option to get the 'local' time()
2012-06-08Merge remote-tracking branch 'upstream/develop' into new_dateIban Eguia5-65/+101
2012-06-07Deprecated do_hash() and read_file() in favor of hash() and ↵Andrey Andreev3-4/+8
file_get_contents() respectively
2012-05-02Merge upstream branchAndrey Andreev2-61/+93
2012-04-26Merge pull request #1004 from kwaanonline/developPhil Sturgeon1-60/+92
Date Helper documentation update
2012-04-26Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developJamie Rumbelow6-151/+250
Conflicts: system/core/Loader.php system/database/DB_query_builder.php system/database/drivers/cubrid/cubrid_driver.php system/database/drivers/mssql/mssql_driver.php system/database/drivers/mysql/mysql_driver.php system/database/drivers/mysqli/mysqli_driver.php system/database/drivers/oci8/oci8_driver.php system/database/drivers/odbc/odbc_driver.php system/database/drivers/pdo/pdo_driver.php system/database/drivers/postgre/postgre_driver.php system/database/drivers/sqlite/sqlite_driver.php user_guide_src/source/changelog.rst user_guide_src/source/database/query_builder.rst
2012-03-27Added doccumentation for the new date helper.Iban Eguia1-8/+14
2012-03-26Merge branch 'develop' of github.com:EllisLab/CodeIgniter into ↵Andrey Andreev1-21/+41
develop-dh-date-range
2012-03-26Merge pull request #994 from Razican/doctypesAndrey Andreev1-21/+41
Doctypes
2012-03-20Merge upstream branchAndrey Andreev5-17/+57
2012-03-18use php's hash() function for do_hash() helperfreewil1-3/+4
2012-03-16Fix form_fieldset_close() example to match actual returntiyowan1-1/+1
2012-03-15Add strip_slashes() to string helper documentationtiyowan1-0/+30
2012-03-14Fix form_input() associative array example to match actual returntiyowan1-1/+1
2012-03-14timespan() helper changeRoger Herbert2-120/+165
2012-03-14Further improve the path helperAndrey Andreev1-10/+10
2012-03-14Merge pull request #1175 from toopay/path_helperAndrey Andreev1-5/+11
Path helper improvement
2012-03-13New line and changelog correctionTaufan Aditya1-0/+3
2012-03-13Merge upstream branchAndrey Andreev1-113/+152
2012-03-12typoMichiel Vugteveen1-2/+2