summaryrefslogtreecommitdiffstats
path: root/system/helpers/inflector_helper.php
AgeCommit message (Collapse)AuthorFilesLines
2022-03-03Merge branch '3.1-stable' into developAndrey Andreev1-1/+2
2022-03-02[ci skip] Update copyright noticesAndrey Andreev1-1/+2
2020-07-09[ci skip] Merge pull request #5970 from sapics/fix/user-guide-urlAndrey Andreev1-1/+1
Fix user guide url
2020-06-24Fix user guide urlsapics1-1/+1
Replace from https://codeigniter.com/user_guide/* to https://codeigniter.com/userguide3/*
2019-01-08Merge branch '3.1-stable' into developAndrey Andreev1-0/+11
Conflicts resolved: system/database/drivers/sqlite/sqlite_driver.php system/database/drivers/sqlite/sqlite_forge.php system/database/drivers/sqlite/sqlite_result.php system/database/drivers/sqlite/sqlite_utility.php system/helpers/captcha_helper.php system/helpers/email_helper.php system/helpers/inflector_helper.php system/helpers/smiley_helper.php system/language/english/form_validation_lang.php system/libraries/Cart.php system/libraries/Form_validation.php system/libraries/Javascript.php system/libraries/Javascript/Jquery.php system/libraries/Session/SessionHandlerInterface.php tests/codeigniter/helpers/inflector_helper_test.php user_guide_src/source/helpers/inflector_helper.rst
2019-01-08[ci skip] Close #5482Andrey Andreev1-4/+15
2019-01-02Merge pull request #5662 from jim-parry/copyright2019Instructor, BCIT1-3/+3
Update copyright date to 2019
2018-12-27Update copyright date to 2019Jim Parry1-2/+2
2018-06-01[ci skip] Close #5482Andrey Andreev1-4/+4
2018-05-18http:// to https://Mehdi Bounya1-2/+2
2018-01-09[ci skip] Merge pull request #5376 from jim-parry/copyright-updateAndrey Andreev1-2/+2
Annual copyright update Conflicts resolved: system/libraries/Cache/drivers/Cache_apcu.php
2018-01-09Annual copyright updateMaster Yoda1-2/+2
2017-05-09Merge pull request #5108 from ft23/patch-1Andrey Andreev1-0/+1
quizzes singular doesn't work
2017-05-06quizzes singular is doesnt work.Fatih Turan1-0/+1
2017-01-03Update copyright data to 2017Master Yoda1-2/+2
2016-12-31Update copyright data to 2017Master Yoda1-2/+2
2016-10-28[ci skip] Clear trailing whitespace from PR #4834Andrey Andreev1-1/+1
2016-10-21[ci skip] Add changelog entry for PR #4862Andrey Andreev1-3/+3
2016-10-21fixed small coding style issuesgxgpet1-5/+4
2016-10-20ordinal_format will accept only non-negative natural numbers and return ↵George Petculescu1-2/+2
original value on failure + docs update regarding this.
2016-10-20moved ordinal_format() helper function from Number helper to Inflector helperGeorge Petculescu1-0/+40
2016-10-11Merge pull request #4834 from renedekat/patch-1Andrey Andreev1-2/+31
Updated list of words that aren't countable in is_countable() inflector helper
2016-10-10Updated list of words that aren't countableRené de Kat1-2/+31
Updated list of words that are the same in plural and singular form in English.
2016-02-07hunanize() helper: Escaping the $separator argument.Ivan Tcholakov1-1/+1
2016-01-11[ci skip] Update ellislab.com links to https tooAndrey Andreev1-1/+1
2016-01-11[ci skip] Update codeigniter.com links to httpsAndrey Andreev1-2/+2
2016-01-11[ci skip] Bump year to 2016Andrey Andreev1-2/+2
2015-04-14[helper]update plural regularftwbzhao1-0/+1
2015-01-21Remove closing blocks at end of PHP filesvlakoff1-3/+0
2015-01-09Bulk (mostly documentation) updateAndrey Andreev1-3/+3
- Remove PHP version from license notices - Bump year number in copyright notices - Recommend PHP 5.4 or newer to be used - Tell Travis-CI to test on PHP 5.3.0 instead of the latest 5.3 version Related: #3450
2014-10-27[ci skip] Switch to MIT license; close #3293Andrey Andreev1-14/+25
2014-02-13Update Text and Inflector helpers to utilize mbstring, if availableAndrey Andreev1-8/+9
Text: word_wrap(), ellipsize() Inflector: humanize(), underscore() (rel #2855)
2014-02-112013 > 2014darwinel1-1/+1
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015.
2013-01-01[ci skip] Happy new yearAndrey Andreev1-1/+1
2012-12-03[ci skip] Cleaned some spacesAndrey Andreev1-26/+26
2012-11-08Polish docs for HTML, Inflector, Language, Number, Path, Security and Smiley ↵Andrey Andreev1-11/+10
helpers Also fixed a DB_cache bug introduced in previous commit and removed an unused parameter in a smiley helper
2012-11-01Manually apply PR #1594 (fixing phpdoc page-level generation/warnings)Andrey Andreev1-1/+2
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files.
2012-05-17Update inflector docblocks, add changelog entryTimothy Warren1-5/+5
2012-04-27Fix rest of the helpersTimothy Warren1-48/+50
2012-03-26Remove remaining access description lines from helpers + some style fixesAndrey Andreev1-9/+11
2012-03-14Merged unit test progress.Phil Sturgeon1-7/+4
2012-03-14Merge branch 'feature/unit-tests' into developPhil Sturgeon1-1/+1
2012-03-10Really fix camelize()Andrey Andreev1-1/+1
2012-03-10Fix camelize()Andrey Andreev1-8/+5
2012-03-10Fixed camelize.Phil Sturgeon1-1/+1
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon1-1/+1
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway...
2012-02-29Improved plural() and singular().Phil Sturgeon1-56/+96
Avoids double-pluralization using "uncountable words" and better logic.
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-06Improve html, inflector & language helpersAndrey Andreev1-25/+5
2012-01-02Updating copyright date to 2012Greg Aker1-1/+1