blob: b0b99be5404e05d29e3e625be50a689681c8f1fc [file] [log] [blame]
Derek Allardd2df9bc2007-04-15 17:41:17 +00001<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
2/**
3 * CodeIgniter
4 *
5 * An open source application development framework for PHP 4.3.2 or newer
6 *
7 * @package CodeIgniter
Derek Allard3d879d52008-01-18 19:41:32 +00008 * @author ExpressionEngine Dev Team
Derek Allardd2df9bc2007-04-15 17:41:17 +00009 * @copyright Copyright (c) 2006, EllisLab, Inc.
Derek Jones7a9193a2008-01-21 18:39:20 +000010 * @license http://codeigniter.com/user_guide/license.html
11 * @link http://codeigniter.com
Derek Allardd2df9bc2007-04-15 17:41:17 +000012 * @since Version 1.0
13 * @filesource
14 */
15
16// ------------------------------------------------------------------------
17
18/**
19 * CodeIgniter Inflector Helpers
20 *
21 * @package CodeIgniter
22 * @subpackage Helpers
23 * @category Helpers
Derek Allard3d879d52008-01-18 19:41:32 +000024 * @author ExpressionEngine Dev Team
Derek Jones7a9193a2008-01-21 18:39:20 +000025 * @link http://codeigniter.com/user_guide/helpers/directory_helper.html
Derek Allardd2df9bc2007-04-15 17:41:17 +000026 */
27
28
29// --------------------------------------------------------------------
30
31/**
32 * Singular
33 *
Derek Joneseea2bda2007-07-11 22:09:45 +000034 * Takes a plural word and makes it singular
Derek Allardd2df9bc2007-04-15 17:41:17 +000035 *
36 * @access public
37 * @param string
38 * @return str
Derek Jones269b9422008-01-28 21:00:20 +000039 */
40if (! function_exists('singular'))
41{
42 function singular($str)
43 {
44 $str = strtolower(trim($str));
45 $end = substr($str, -3);
Derek Allardf5a51982007-07-11 19:35:09 +000046
Derek Jones269b9422008-01-28 21:00:20 +000047 if ($end == 'ies')
48 {
49 $str = substr($str, 0, strlen($str)-3).'y';
50 }
51 elseif ($end == 'ses')
52 {
53 $str = substr($str, 0, strlen($str)-2);
54 }
55 else
56 {
57 $end = substr($str, -1);
Derek Allardf5a51982007-07-11 19:35:09 +000058
Derek Jones269b9422008-01-28 21:00:20 +000059 if ($end == 's')
60 {
61 $str = substr($str, 0, strlen($str)-1);
62 }
63 }
Derek Allardf5a51982007-07-11 19:35:09 +000064
Derek Jones269b9422008-01-28 21:00:20 +000065 return $str;
66 }
Derek Allardd2df9bc2007-04-15 17:41:17 +000067}
68
69// --------------------------------------------------------------------
70
71/**
72 * Plural
73 *
Derek Joneseea2bda2007-07-11 22:09:45 +000074 * Takes a singular word and makes it plural
Derek Allardd2df9bc2007-04-15 17:41:17 +000075 *
76 * @access public
77 * @param string
Derek Allardf5a51982007-07-11 19:35:09 +000078 * @param bool
Derek Allardd2df9bc2007-04-15 17:41:17 +000079 * @return str
Derek Jones269b9422008-01-28 21:00:20 +000080 */
81if (! function_exists('plural'))
82{
83 function plural($str, $force = FALSE)
84 {
85 $str = strtolower(trim($str));
86 $end = substr($str, -1);
Derek Allardd2df9bc2007-04-15 17:41:17 +000087
Derek Jones269b9422008-01-28 21:00:20 +000088 if ($end == 'y')
89 {
90 $str = substr($str, 0, strlen($str)-1).'ies';
91 }
92 elseif ($end == 's')
93 {
94 if ($force == TRUE)
95 {
96 $str .= 'es';
97 }
98 }
99 else
100 {
101 $str .= 's';
102 }
Derek Allardd2df9bc2007-04-15 17:41:17 +0000103
Derek Jones269b9422008-01-28 21:00:20 +0000104 return $str;
105 }
Derek Allardd2df9bc2007-04-15 17:41:17 +0000106}
107
108// --------------------------------------------------------------------
109
110/**
111 * Camelize
112 *
113 * Takes multiple words separated by spaces or underscores and camelizes them
114 *
115 * @access public
116 * @param string
117 * @return str
Derek Jones269b9422008-01-28 21:00:20 +0000118 */
119if (! function_exists('camelize'))
120{
121 function camelize($str)
122 {
123 $str = 'x'.strtolower(trim($str));
124 $str = ucwords(preg_replace('/[\s_]+/', ' ', $str));
125 return substr(str_replace(' ', '', $str), 1);
126 }
Derek Allardd2df9bc2007-04-15 17:41:17 +0000127}
128
129// --------------------------------------------------------------------
130
131/**
132 * Underscore
133 *
134 * Takes multiple words separated by spaces and underscores them
135 *
136 * @access public
137 * @param string
138 * @return str
Derek Jones269b9422008-01-28 21:00:20 +0000139 */
140if (! function_exists('underscore'))
Derek Allardd2df9bc2007-04-15 17:41:17 +0000141{
Derek Jones269b9422008-01-28 21:00:20 +0000142 function underscore($str)
143 {
144 return preg_replace('/[\s]+/', '_', strtolower(trim($str)));
145 }
Derek Allardd2df9bc2007-04-15 17:41:17 +0000146}
147
148// --------------------------------------------------------------------
149
150/**
151 * Humanize
152 *
153 * Takes multiple words separated by underscores and changes them to spaces
154 *
155 * @access public
156 * @param string
157 * @return str
Derek Jones269b9422008-01-28 21:00:20 +0000158 */
159if (! function_exists('humanize'))
160{
161 function humanize($str)
162 {
163 return ucwords(preg_replace('/[_]+/', ' ', strtolower(trim($str))));
164 }
Derek Allardd2df9bc2007-04-15 17:41:17 +0000165}
166
Derek Jonesa3ffbbb2008-05-11 18:18:29 +0000167
168/* End of file inflector_helper.php */
169/* Location: ./system/helpers/inflector_helper.php */