blob: 59cb296b261ab9ce9821e1ad2ab60d504045416e [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Eric Barnescde712c2011-12-09 11:27:51 -05008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Eric Barnescde712c2011-12-09 11:27:51 -050010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Derek Allard2067d1a2008-11-13 22:59:24 +000019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029/**
30 * CodeIgniter Inflector Helpers
31 *
32 * @package CodeIgniter
33 * @subpackage Helpers
34 * @category Helpers
Derek Jonesf4a4bd82011-10-20 12:18:42 -050035 * @author EllisLab Dev Team
Phil Sturgeon002b4be2012-02-29 12:12:49 +000036 * @link http://codeigniter.com/user_guide/helpers/inflector_helper.html
Derek Allard2067d1a2008-11-13 22:59:24 +000037 */
38
Derek Allard2067d1a2008-11-13 22:59:24 +000039// --------------------------------------------------------------------
40
Derek Allard2067d1a2008-11-13 22:59:24 +000041if ( ! function_exists('singular'))
Barry Mienydd671972010-10-04 16:33:58 +020042{
Timothy Warrenb75faa12012-04-27 12:03:32 -040043 /**
44 * Singular
45 *
46 * Takes a plural word and makes it singular
47 *
Andrey Andreev53b8ef52012-11-08 21:38:53 +020048 * @param string $str Input string
Timothy Warren16642c72012-05-17 08:20:16 -040049 * @return string
Timothy Warrenb75faa12012-04-27 12:03:32 -040050 */
Derek Allard2067d1a2008-11-13 22:59:24 +000051 function singular($str)
52 {
Phil Sturgeon50e57bc2011-08-13 10:26:04 -060053 $result = strval($str);
Barry Mienydd671972010-10-04 16:33:58 +020054
Phil Sturgeon002b4be2012-02-29 12:12:49 +000055 if ( ! is_countable($result))
56 {
57 return $result;
58 }
Andrey Andreev52a31ba2012-03-10 15:38:49 +020059
Phil Sturgeon50e57bc2011-08-13 10:26:04 -060060 $singular_rules = array(
Phil Sturgeon002b4be2012-02-29 12:12:49 +000061 '/(matr)ices$/' => '\1ix',
62 '/(vert|ind)ices$/' => '\1ex',
63 '/^(ox)en/' => '\1',
64 '/(alias)es$/' => '\1',
65 '/([octop|vir])i$/' => '\1us',
66 '/(cris|ax|test)es$/' => '\1is',
67 '/(shoe)s$/' => '\1',
68 '/(o)es$/' => '\1',
69 '/(bus|campus)es$/' => '\1',
70 '/([m|l])ice$/' => '\1ouse',
71 '/(x|ch|ss|sh)es$/' => '\1',
72 '/(m)ovies$/' => '\1\2ovie',
73 '/(s)eries$/' => '\1\2eries',
74 '/([^aeiouy]|qu)ies$/' => '\1y',
75 '/([lr])ves$/' => '\1f',
76 '/(tive)s$/' => '\1',
77 '/(hive)s$/' => '\1',
78 '/([^f])ves$/' => '\1fe',
79 '/(^analy)ses$/' => '\1sis',
Phil Sturgeon50e57bc2011-08-13 10:26:04 -060080 '/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/' => '\1\2sis',
Phil Sturgeon002b4be2012-02-29 12:12:49 +000081 '/([ti])a$/' => '\1um',
82 '/(p)eople$/' => '\1\2erson',
83 '/(m)en$/' => '\1an',
84 '/(s)tatuses$/' => '\1\2tatus',
85 '/(c)hildren$/' => '\1\2hild',
86 '/(n)ews$/' => '\1\2ews',
87 '/([^us])s$/' => '\1',
Phil Sturgeon50e57bc2011-08-13 10:26:04 -060088 );
Eric Barnescde712c2011-12-09 11:27:51 -050089
Phil Sturgeon002b4be2012-02-29 12:12:49 +000090 foreach ($singular_rules as $rule => $replacement)
91 {
92 if (preg_match($rule, $result))
93 {
94 $result = preg_replace($rule, $replacement, $result);
95 break;
96 }
97 }
98
99 return $result;
Derek Allard2067d1a2008-11-13 22:59:24 +0000100 }
101}
102
103// --------------------------------------------------------------------
104
Derek Allard2067d1a2008-11-13 22:59:24 +0000105if ( ! function_exists('plural'))
Barry Mienydd671972010-10-04 16:33:58 +0200106{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400107 /**
108 * Plural
109 *
110 * Takes a singular word and makes it plural
111 *
Andrey Andreev53b8ef52012-11-08 21:38:53 +0200112 * @param string $str Input string
Timothy Warren16642c72012-05-17 08:20:16 -0400113 * @return string
Timothy Warrenb75faa12012-04-27 12:03:32 -0400114 */
Andrey Andreev53b8ef52012-11-08 21:38:53 +0200115 function plural($str)
Andrey Andreev52a31ba2012-03-10 15:38:49 +0200116 {
Phil Sturgeon50e57bc2011-08-13 10:26:04 -0600117 $result = strval($str);
Eric Barnescde712c2011-12-09 11:27:51 -0500118
Phil Sturgeon002b4be2012-02-29 12:12:49 +0000119 if ( ! is_countable($result))
120 {
121 return $result;
122 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000123
Phil Sturgeon002b4be2012-02-29 12:12:49 +0000124 $plural_rules = array(
125 '/^(ox)$/' => '\1\2en', // ox
126 '/([m|l])ouse$/' => '\1ice', // mouse, louse
127 '/(matr|vert|ind)ix|ex$/' => '\1ices', // matrix, vertex, index
128 '/(x|ch|ss|sh)$/' => '\1es', // search, switch, fix, box, process, address
129 '/([^aeiouy]|qu)y$/' => '\1ies', // query, ability, agency
130 '/(hive)$/' => '\1s', // archive, hive
131 '/(?:([^f])fe|([lr])f)$/' => '\1\2ves', // half, safe, wife
132 '/sis$/' => 'ses', // basis, diagnosis
133 '/([ti])um$/' => '\1a', // datum, medium
134 '/(p)erson$/' => '\1eople', // person, salesperson
135 '/(m)an$/' => '\1en', // man, woman, spokesman
136 '/(c)hild$/' => '\1hildren', // child
137 '/(buffal|tomat)o$/' => '\1\2oes', // buffalo, tomato
138 '/(bu|campu)s$/' => '\1\2ses', // bus, campus
139 '/(alias|status|virus)$/' => '\1es', // alias
140 '/(octop)us$/' => '\1i', // octopus
141 '/(ax|cris|test)is$/' => '\1es', // axis, crisis
142 '/s$/' => 's', // no change (compatibility)
143 '/$/' => 's',
144 );
Andrey Andreev52a31ba2012-03-10 15:38:49 +0200145
Phil Sturgeon002b4be2012-02-29 12:12:49 +0000146 foreach ($plural_rules as $rule => $replacement)
147 {
148 if (preg_match($rule, $result))
149 {
150 $result = preg_replace($rule, $replacement, $result);
151 break;
152 }
153 }
154
155 return $result;
Derek Allard2067d1a2008-11-13 22:59:24 +0000156 }
157}
158
159// --------------------------------------------------------------------
160
Derek Allard2067d1a2008-11-13 22:59:24 +0000161if ( ! function_exists('camelize'))
Barry Mienydd671972010-10-04 16:33:58 +0200162{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400163 /**
164 * Camelize
165 *
166 * Takes multiple words separated by spaces or underscores and camelizes them
167 *
Andrey Andreev53b8ef52012-11-08 21:38:53 +0200168 * @param string $str Input string
Timothy Warren16642c72012-05-17 08:20:16 -0400169 * @return string
Timothy Warrenb75faa12012-04-27 12:03:32 -0400170 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000171 function camelize($str)
Barry Mienydd671972010-10-04 16:33:58 +0200172 {
Phil Sturgeone40c7632012-03-10 13:05:08 +0000173 return strtolower($str[0]).substr(str_replace(' ', '', ucwords(preg_replace('/[\s_]+/', ' ', $str))), 1);
Derek Allard2067d1a2008-11-13 22:59:24 +0000174 }
175}
176
177// --------------------------------------------------------------------
178
Derek Allard2067d1a2008-11-13 22:59:24 +0000179if ( ! function_exists('underscore'))
180{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400181 /**
182 * Underscore
183 *
184 * Takes multiple words separated by spaces and underscores them
185 *
Andrey Andreev53b8ef52012-11-08 21:38:53 +0200186 * @param string $str Input string
Timothy Warren16642c72012-05-17 08:20:16 -0400187 * @return string
Timothy Warrenb75faa12012-04-27 12:03:32 -0400188 */
Derek Allard2067d1a2008-11-13 22:59:24 +0000189 function underscore($str)
190 {
191 return preg_replace('/[\s]+/', '_', strtolower(trim($str)));
192 }
193}
194
195// --------------------------------------------------------------------
196
Derek Allard2067d1a2008-11-13 22:59:24 +0000197if ( ! function_exists('humanize'))
Barry Mienydd671972010-10-04 16:33:58 +0200198{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400199 /**
200 * Humanize
201 *
202 * Takes multiple words separated by the separator and changes them to spaces
203 *
Andrey Andreev53b8ef52012-11-08 21:38:53 +0200204 * @param string $str Input string
205 * @param string $separator Input separator
Timothy Warren16642c72012-05-17 08:20:16 -0400206 * @return string
Timothy Warrenb75faa12012-04-27 12:03:32 -0400207 */
Eric Barnescde712c2011-12-09 11:27:51 -0500208 function humanize($str, $separator = '_')
Derek Allard2067d1a2008-11-13 22:59:24 +0000209 {
Eric Barnescde712c2011-12-09 11:27:51 -0500210 return ucwords(preg_replace('/['.$separator.']+/', ' ', strtolower(trim($str))));
Derek Allard2067d1a2008-11-13 22:59:24 +0000211 }
212}
Barry Mienydd671972010-10-04 16:33:58 +0200213
Timothy Warrenb75faa12012-04-27 12:03:32 -0400214// --------------------------------------------------------------------
215
Phil Sturgeon002b4be2012-02-29 12:12:49 +0000216if ( ! function_exists('is_countable'))
217{
Timothy Warrenb75faa12012-04-27 12:03:32 -0400218 /**
219 * Checks if the given word has a plural version.
220 *
Andrey Andreev53b8ef52012-11-08 21:38:53 +0200221 * @param string $word Word to check
222 * @return bool
Timothy Warrenb75faa12012-04-27 12:03:32 -0400223 */
Phil Sturgeon002b4be2012-02-29 12:12:49 +0000224 function is_countable($word)
225 {
Andrey Andreev53b8ef52012-11-08 21:38:53 +0200226 return ! in_array(strtolower($word),
Andrey Andreeve92df332012-03-26 22:44:20 +0300227 array(
228 'equipment', 'information', 'rice', 'money',
229 'species', 'series', 'fish', 'meta'
230 )
231 );
Phil Sturgeon002b4be2012-02-29 12:12:49 +0000232 }
233}
234
Derek Allard2067d1a2008-11-13 22:59:24 +0000235/* End of file inflector_helper.php */
Andrey Andreeve92df332012-03-26 22:44:20 +0300236/* Location: ./system/helpers/inflector_helper.php */