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 | * |
Andrey Andreev | fe9309d | 2015-01-09 17:48:58 +0200 | [diff] [blame] | 5 | * An open source application development framework for PHP |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 6 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 7 | * This content is released under the MIT License (MIT) |
Eric Barnes | cde712c | 2011-12-09 11:27:51 -0500 | [diff] [blame] | 8 | * |
Instructor, BCIT | 0e59db6 | 2019-01-01 08:34:36 -0800 | [diff] [blame] | 9 | * Copyright (c) 2014 - 2019, British Columbia Institute of Technology |
Eric Barnes | cde712c | 2011-12-09 11:27:51 -0500 | [diff] [blame] | 10 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 11 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 12 | * of this software and associated documentation files (the "Software"), to deal |
| 13 | * in the Software without restriction, including without limitation the rights |
| 14 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 15 | * copies of the Software, and to permit persons to whom the Software is |
| 16 | * furnished to do so, subject to the following conditions: |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 17 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 18 | * The above copyright notice and this permission notice shall be included in |
| 19 | * all copies or substantial portions of the Software. |
| 20 | * |
| 21 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 22 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 23 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 24 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 25 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 26 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 27 | * THE SOFTWARE. |
| 28 | * |
| 29 | * @package CodeIgniter |
| 30 | * @author EllisLab Dev Team |
Andrey Andreev | 1924e87 | 2016-01-11 12:55:34 +0200 | [diff] [blame] | 31 | * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/) |
Instructor, BCIT | 0e59db6 | 2019-01-01 08:34:36 -0800 | [diff] [blame] | 32 | * @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/) |
| 33 | * @license https://opensource.org/licenses/MIT MIT License |
Andrey Andreev | bd202c9 | 2016-01-11 12:50:18 +0200 | [diff] [blame] | 34 | * @link https://codeigniter.com |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 35 | * @since Version 1.0.0 |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 36 | * @filesource |
| 37 | */ |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 38 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 39 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 40 | /** |
| 41 | * CodeIgniter Inflector Helpers |
| 42 | * |
| 43 | * @package CodeIgniter |
| 44 | * @subpackage Helpers |
| 45 | * @category Helpers |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 46 | * @author EllisLab Dev Team |
Andrey Andreev | bd202c9 | 2016-01-11 12:50:18 +0200 | [diff] [blame] | 47 | * @link https://codeigniter.com/user_guide/helpers/inflector_helper.html |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 48 | */ |
| 49 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 50 | // -------------------------------------------------------------------- |
| 51 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 52 | if ( ! function_exists('singular')) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 53 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 54 | /** |
| 55 | * Singular |
| 56 | * |
| 57 | * Takes a plural word and makes it singular |
| 58 | * |
Andrey Andreev | 53b8ef5 | 2012-11-08 21:38:53 +0200 | [diff] [blame] | 59 | * @param string $str Input string |
Timothy Warren | 16642c7 | 2012-05-17 08:20:16 -0400 | [diff] [blame] | 60 | * @return string |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 61 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 62 | function singular($str) |
| 63 | { |
Phil Sturgeon | 50e57bc | 2011-08-13 10:26:04 -0600 | [diff] [blame] | 64 | $result = strval($str); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 65 | |
Andrey Andreev | 12ee984 | 2018-06-01 18:07:34 +0300 | [diff] [blame^] | 66 | if ( ! word_is_countable($result)) |
Phil Sturgeon | 002b4be | 2012-02-29 12:12:49 +0000 | [diff] [blame] | 67 | { |
| 68 | return $result; |
| 69 | } |
Andrey Andreev | 52a31ba | 2012-03-10 15:38:49 +0200 | [diff] [blame] | 70 | |
Phil Sturgeon | 50e57bc | 2011-08-13 10:26:04 -0600 | [diff] [blame] | 71 | $singular_rules = array( |
Andrey Andreev | 838a9d6 | 2012-12-03 14:37:47 +0200 | [diff] [blame] | 72 | '/(matr)ices$/' => '\1ix', |
| 73 | '/(vert|ind)ices$/' => '\1ex', |
| 74 | '/^(ox)en/' => '\1', |
| 75 | '/(alias)es$/' => '\1', |
| 76 | '/([octop|vir])i$/' => '\1us', |
| 77 | '/(cris|ax|test)es$/' => '\1is', |
| 78 | '/(shoe)s$/' => '\1', |
| 79 | '/(o)es$/' => '\1', |
| 80 | '/(bus|campus)es$/' => '\1', |
| 81 | '/([m|l])ice$/' => '\1ouse', |
| 82 | '/(x|ch|ss|sh)es$/' => '\1', |
| 83 | '/(m)ovies$/' => '\1\2ovie', |
| 84 | '/(s)eries$/' => '\1\2eries', |
| 85 | '/([^aeiouy]|qu)ies$/' => '\1y', |
| 86 | '/([lr])ves$/' => '\1f', |
| 87 | '/(tive)s$/' => '\1', |
| 88 | '/(hive)s$/' => '\1', |
| 89 | '/([^f])ves$/' => '\1fe', |
| 90 | '/(^analy)ses$/' => '\1sis', |
Phil Sturgeon | 50e57bc | 2011-08-13 10:26:04 -0600 | [diff] [blame] | 91 | '/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/' => '\1\2sis', |
Andrey Andreev | 838a9d6 | 2012-12-03 14:37:47 +0200 | [diff] [blame] | 92 | '/([ti])a$/' => '\1um', |
| 93 | '/(p)eople$/' => '\1\2erson', |
| 94 | '/(m)en$/' => '\1an', |
| 95 | '/(s)tatuses$/' => '\1\2tatus', |
| 96 | '/(c)hildren$/' => '\1\2hild', |
| 97 | '/(n)ews$/' => '\1\2ews', |
Andrey Andreev | 8a0f440 | 2017-05-09 09:40:49 +0300 | [diff] [blame] | 98 | '/(quiz)zes$/' => '\1', |
Andrey Andreev | 838a9d6 | 2012-12-03 14:37:47 +0200 | [diff] [blame] | 99 | '/([^us])s$/' => '\1' |
Phil Sturgeon | 50e57bc | 2011-08-13 10:26:04 -0600 | [diff] [blame] | 100 | ); |
Eric Barnes | cde712c | 2011-12-09 11:27:51 -0500 | [diff] [blame] | 101 | |
Phil Sturgeon | 002b4be | 2012-02-29 12:12:49 +0000 | [diff] [blame] | 102 | foreach ($singular_rules as $rule => $replacement) |
| 103 | { |
| 104 | if (preg_match($rule, $result)) |
| 105 | { |
| 106 | $result = preg_replace($rule, $replacement, $result); |
| 107 | break; |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | return $result; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 112 | } |
| 113 | } |
| 114 | |
| 115 | // -------------------------------------------------------------------- |
| 116 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 117 | if ( ! function_exists('plural')) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 118 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 119 | /** |
| 120 | * Plural |
| 121 | * |
| 122 | * Takes a singular word and makes it plural |
| 123 | * |
Andrey Andreev | 53b8ef5 | 2012-11-08 21:38:53 +0200 | [diff] [blame] | 124 | * @param string $str Input string |
Timothy Warren | 16642c7 | 2012-05-17 08:20:16 -0400 | [diff] [blame] | 125 | * @return string |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 126 | */ |
Andrey Andreev | 53b8ef5 | 2012-11-08 21:38:53 +0200 | [diff] [blame] | 127 | function plural($str) |
Andrey Andreev | 52a31ba | 2012-03-10 15:38:49 +0200 | [diff] [blame] | 128 | { |
Phil Sturgeon | 50e57bc | 2011-08-13 10:26:04 -0600 | [diff] [blame] | 129 | $result = strval($str); |
Eric Barnes | cde712c | 2011-12-09 11:27:51 -0500 | [diff] [blame] | 130 | |
Andrey Andreev | 12ee984 | 2018-06-01 18:07:34 +0300 | [diff] [blame^] | 131 | if ( ! word_is_countable($result)) |
Phil Sturgeon | 002b4be | 2012-02-29 12:12:49 +0000 | [diff] [blame] | 132 | { |
| 133 | return $result; |
| 134 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 135 | |
Phil Sturgeon | 002b4be | 2012-02-29 12:12:49 +0000 | [diff] [blame] | 136 | $plural_rules = array( |
ftwbzhao | 1a973c3 | 2015-04-14 16:59:44 +0800 | [diff] [blame] | 137 | '/(quiz)$/' => '\1zes', // quizzes |
Phil Sturgeon | 002b4be | 2012-02-29 12:12:49 +0000 | [diff] [blame] | 138 | '/^(ox)$/' => '\1\2en', // ox |
| 139 | '/([m|l])ouse$/' => '\1ice', // mouse, louse |
| 140 | '/(matr|vert|ind)ix|ex$/' => '\1ices', // matrix, vertex, index |
| 141 | '/(x|ch|ss|sh)$/' => '\1es', // search, switch, fix, box, process, address |
| 142 | '/([^aeiouy]|qu)y$/' => '\1ies', // query, ability, agency |
| 143 | '/(hive)$/' => '\1s', // archive, hive |
| 144 | '/(?:([^f])fe|([lr])f)$/' => '\1\2ves', // half, safe, wife |
| 145 | '/sis$/' => 'ses', // basis, diagnosis |
| 146 | '/([ti])um$/' => '\1a', // datum, medium |
| 147 | '/(p)erson$/' => '\1eople', // person, salesperson |
| 148 | '/(m)an$/' => '\1en', // man, woman, spokesman |
| 149 | '/(c)hild$/' => '\1hildren', // child |
| 150 | '/(buffal|tomat)o$/' => '\1\2oes', // buffalo, tomato |
| 151 | '/(bu|campu)s$/' => '\1\2ses', // bus, campus |
| 152 | '/(alias|status|virus)$/' => '\1es', // alias |
| 153 | '/(octop)us$/' => '\1i', // octopus |
| 154 | '/(ax|cris|test)is$/' => '\1es', // axis, crisis |
| 155 | '/s$/' => 's', // no change (compatibility) |
| 156 | '/$/' => 's', |
| 157 | ); |
Andrey Andreev | 52a31ba | 2012-03-10 15:38:49 +0200 | [diff] [blame] | 158 | |
Phil Sturgeon | 002b4be | 2012-02-29 12:12:49 +0000 | [diff] [blame] | 159 | foreach ($plural_rules as $rule => $replacement) |
| 160 | { |
| 161 | if (preg_match($rule, $result)) |
| 162 | { |
| 163 | $result = preg_replace($rule, $replacement, $result); |
| 164 | break; |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | return $result; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 169 | } |
| 170 | } |
| 171 | |
| 172 | // -------------------------------------------------------------------- |
| 173 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 174 | if ( ! function_exists('camelize')) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 175 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 176 | /** |
| 177 | * Camelize |
| 178 | * |
| 179 | * Takes multiple words separated by spaces or underscores and camelizes them |
| 180 | * |
Andrey Andreev | 53b8ef5 | 2012-11-08 21:38:53 +0200 | [diff] [blame] | 181 | * @param string $str Input string |
Timothy Warren | 16642c7 | 2012-05-17 08:20:16 -0400 | [diff] [blame] | 182 | * @return string |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 183 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 184 | function camelize($str) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 185 | { |
Phil Sturgeon | e40c763 | 2012-03-10 13:05:08 +0000 | [diff] [blame] | 186 | return strtolower($str[0]).substr(str_replace(' ', '', ucwords(preg_replace('/[\s_]+/', ' ', $str))), 1); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 187 | } |
| 188 | } |
| 189 | |
| 190 | // -------------------------------------------------------------------- |
| 191 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 192 | if ( ! function_exists('underscore')) |
| 193 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 194 | /** |
| 195 | * Underscore |
| 196 | * |
| 197 | * Takes multiple words separated by spaces and underscores them |
| 198 | * |
Andrey Andreev | 53b8ef5 | 2012-11-08 21:38:53 +0200 | [diff] [blame] | 199 | * @param string $str Input string |
Timothy Warren | 16642c7 | 2012-05-17 08:20:16 -0400 | [diff] [blame] | 200 | * @return string |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 201 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 202 | function underscore($str) |
| 203 | { |
Andrey Andreev | 6ce4746 | 2014-02-13 03:28:00 +0200 | [diff] [blame] | 204 | return preg_replace('/[\s]+/', '_', trim(MB_ENABLED ? mb_strtolower($str) : strtolower($str))); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 205 | } |
| 206 | } |
| 207 | |
| 208 | // -------------------------------------------------------------------- |
| 209 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 210 | if ( ! function_exists('humanize')) |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 211 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 212 | /** |
| 213 | * Humanize |
| 214 | * |
| 215 | * Takes multiple words separated by the separator and changes them to spaces |
| 216 | * |
Andrey Andreev | 53b8ef5 | 2012-11-08 21:38:53 +0200 | [diff] [blame] | 217 | * @param string $str Input string |
| 218 | * @param string $separator Input separator |
Timothy Warren | 16642c7 | 2012-05-17 08:20:16 -0400 | [diff] [blame] | 219 | * @return string |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 220 | */ |
Eric Barnes | cde712c | 2011-12-09 11:27:51 -0500 | [diff] [blame] | 221 | function humanize($str, $separator = '_') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 222 | { |
Ivan Tcholakov | 9fee9e4 | 2016-02-07 21:33:46 +0200 | [diff] [blame] | 223 | return ucwords(preg_replace('/['.preg_quote($separator).']+/', ' ', trim(MB_ENABLED ? mb_strtolower($str) : strtolower($str)))); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 224 | } |
| 225 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 226 | |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 227 | // -------------------------------------------------------------------- |
| 228 | |
Andrey Andreev | 12ee984 | 2018-06-01 18:07:34 +0300 | [diff] [blame^] | 229 | if ( ! function_exists('word_is_countable')) |
Phil Sturgeon | 002b4be | 2012-02-29 12:12:49 +0000 | [diff] [blame] | 230 | { |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 231 | /** |
| 232 | * Checks if the given word has a plural version. |
| 233 | * |
Andrey Andreev | 53b8ef5 | 2012-11-08 21:38:53 +0200 | [diff] [blame] | 234 | * @param string $word Word to check |
| 235 | * @return bool |
Timothy Warren | b75faa1 | 2012-04-27 12:03:32 -0400 | [diff] [blame] | 236 | */ |
Andrey Andreev | 12ee984 | 2018-06-01 18:07:34 +0300 | [diff] [blame^] | 237 | function word_is_countable($word) |
Phil Sturgeon | 002b4be | 2012-02-29 12:12:49 +0000 | [diff] [blame] | 238 | { |
Andrey Andreev | 6ce4746 | 2014-02-13 03:28:00 +0200 | [diff] [blame] | 239 | return ! in_array( |
| 240 | strtolower($word), |
| 241 | array( |
Andrey Andreev | 7270512 | 2016-10-11 15:18:40 +0300 | [diff] [blame] | 242 | 'audio', |
| 243 | 'bison', |
| 244 | 'chassis', |
| 245 | 'compensation', |
| 246 | 'coreopsis', |
| 247 | 'data', |
| 248 | 'deer', |
| 249 | 'education', |
| 250 | 'emoji', |
| 251 | 'equipment', |
| 252 | 'fish', |
| 253 | 'furniture', |
| 254 | 'gold', |
| 255 | 'information', |
| 256 | 'knowledge', |
| 257 | 'love', |
| 258 | 'rain', |
| 259 | 'money', |
| 260 | 'moose', |
| 261 | 'nutrition', |
| 262 | 'offspring', |
| 263 | 'plankton', |
| 264 | 'pokemon', |
| 265 | 'police', |
| 266 | 'rice', |
| 267 | 'series', |
| 268 | 'sheep', |
| 269 | 'species', |
| 270 | 'swine', |
| 271 | 'traffic', |
Andrey Andreev | 4c7323e | 2016-10-28 13:18:17 +0300 | [diff] [blame] | 272 | 'wheat' |
Andrey Andreev | 6ce4746 | 2014-02-13 03:28:00 +0200 | [diff] [blame] | 273 | ) |
| 274 | ); |
Phil Sturgeon | 002b4be | 2012-02-29 12:12:49 +0000 | [diff] [blame] | 275 | } |
| 276 | } |
Andrey Andreev | 12ee984 | 2018-06-01 18:07:34 +0300 | [diff] [blame^] | 277 | |
| 278 | // -------------------------------------------------------------------- |
| 279 | |
| 280 | if ( ! function_exists('is_countable')) |
| 281 | { |
| 282 | function is_countable($word) |
| 283 | { |
| 284 | trigger_error('is_countable() is a native PHP function since version 7.3.0; use word_is_countable() instead', E_USER_WARNING); |
| 285 | return word_is_countable($word); |
| 286 | } |
| 287 | } |