summaryrefslogtreecommitdiffstats
path: root/system/helpers
AgeCommit message (Collapse)AuthorFilesLines
2012-03-04Updated with 2.1-stable.Phil Sturgeon1-19/+15
2012-03-04Allow developers to use any string as a separator, not just dashes or ↵tubalmartin1-10/+19
underscores. Backwards compatible when using 'dash' or 'underscore' as string separator. Tests: http://codepad.org/DWcxVH5r
2012-03-04Fixed conflicts.Phil Sturgeon1-3/+2
2012-03-03An even better url_title helper. Tests: http://codepad.org/tuJgvkyNtubalmartin1-20/+7
Changelog entry added for 2.1.1
2012-03-01Remove a PHP_VERSION < 5 check (no longer needed)Andrey Andreev1-16/+6
2012-02-29Change end() usage due to E_STRICT messagesAndrey Andreev1-1/+2
2012-02-29Merge upstream branchAndrey Andreev1-56/+96
2012-02-29Improved plural() and singular().Phil Sturgeon1-56/+96
Avoids double-pluralization using "uncountable words" and better logic.
2012-02-29Add an optional set_mime parameter to force_download()Andrey Andreev1-39/+41
2012-02-16Merge pull request #934 from wilburhimself/developPhil Sturgeon1-1/+1
Fixed error in inflector_helper.php in the singular function.
2012-01-24Fix bug #195Eric Roberts1-16/+10
Fixes bug #195 regarding non-existent user agent strings when using force_download() helper.
2012-01-17Fixed error in inflector_helper.php in the singular function.Wilbur Suero1-1/+1
The function was excepting $singluar_rules and got $singular_values.
2012-01-10Fix a bug in the File helperAndrey Andreev1-7/+7
2012-01-07Improve typography, url & xml helpersAndrey Andreev3-88/+78
2012-01-06Merge pull request #871 from narfbg/develop-helpers-effPhil Sturgeon3-95/+62
Improve email, file & form helpers
2012-01-06Merge pull request #872 from narfbg/develop-helpers-hilPhil Sturgeon3-76/+33
Improve html, inflector & language helpers
2012-01-06Improve number, path & security helpersAndrey Andreev3-34/+18
2012-01-06Improve html, inflector & language helpersAndrey Andreev3-76/+33
2012-01-06Improve email, file & form helpersAndrey Andreev3-95/+62
2012-01-02Updating copyright date to 2012Greg Aker21-21/+21
2011-12-27Revert "Abstracting the loading of files in the config directory depending ↵Greg Aker5-5/+40
on environments." This reverts commit 5c1aa631c5f5ec2f6b75ba1158178418e50ba11a.
2011-12-25Abstracting the loading of files in the config directory depending on ↵Greg Aker5-40/+5
environments.
2011-12-25Fixing soft tabs in a few files.Greg Aker2-46/+46
2011-12-19Fixed year and month seconds for timespan().Eric Barnes1-35/+35
2011-12-19Makes form open properly when empty array of parameters is passedJoel Kallman1-1/+1
Signed-off-by: Joel Kallman <jkallman@eclarian.com>
2011-12-09Added ability to change the separator value in the humanize functionEric Barnes1-9/+9
2011-11-24Changed form_open() to compare $action against base_url()John Nicely1-1/+1
Checking for strpos($action, $CI->config->site_url()) === FALSE causes CSRF token to not be added in form_open() output. When site_url()'s first parameter ($uri) is empty, site_url's return value is the base URL plus the $CI->config->item('index_page') value. form_open() and CodeIgniter's URI routing do not require index.php to be in the URL, so any call to form_open() in which the $action parameter does not have index.php will always return false for the strpos() call.
2011-11-17auto_link() learned to recognize more URLs has2k11-1/+1
Problem: auto_link() only works on URLs that are preceded by a new line, space, or open parentheses. As a result the URL in the string below would be missed. 'Google<br />http://www.google.com/' Solution: Add a word boundary to the list of features that can precede a URL. Credit to: @scaryuncledevin, issue #419
2011-11-13Resolved issue 65 - made action on form_open_multipart helper function call ↵Ben Edmunds1-1/+1
optional
2011-11-13Fix invalid date formatSyahril Zulkefli1-1/+1
2011-11-13Fix invalid date formatSyahril Zulkefli1-1/+1
2011-11-13Fix invalid date formatSyahril Zulkefli1-1/+1
2011-11-13Fix invalid date formatSyahril Zulkefli1-1/+1
2011-11-07Adding auto-detection of best redirect method in url_helper.Brandon Jones1-1/+7
2011-10-20adding new license file (OSL 3.0) and updating readme to ReSTDerek Jones21-84/+336
added notice of license to all source files. OSL to all except the few files we ship inside of the application folder, those are AFL. Updated license in user guide. incrementing next dev version to 3.0 due to licensing change
2011-10-13Update: fix typo error #564Bo-Yi Wu1-1/+1
2011-10-06Merge pull request #511 from freewil/typography-helper-dryGreg Aker1-6/+1
remove redundant 'if' in typography helper
2011-10-05newline character ending for link_tag() function resultMrHyde1-1/+1
2011-09-29add missing @param tagfreewil1-0/+1
2011-09-29remove redundant 'if' in typography helperfreewil1-6/+0
2011-09-06Major speed improvement in function random_string() for cases 'alpha', ↵druu1-6/+3
'alnum', 'numeric' and 'nozero'
2011-08-30Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developGreg Aker3-10/+11
2011-08-30A bit more cleanup in the date helper.Greg Aker1-59/+54
2011-08-30CI Coding standards cleanup in the date helper.Greg Aker1-25/+40
2011-08-28always use charset config itemfreewil1-3/+4
2011-08-28always use charset config itemfreewil2-6/+6
2011-08-26Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon2-1/+67
2011-08-24Changed doc block options. Fixes #100Eric Barnes1-1/+1
2011-08-21Merge pull request #255 from kylefarris/masterGreg Aker1-0/+66
New Date Helper Function and More Documentation
2011-08-22Added a function that's able to take some really bad date formats from ↵Kyle Farris1-0/+66
systems that idiots wrote and convert them to something useful.