converted to unix-style eol
[www-register-wizard.git] / helpers / inflector_helper.php
index 8a87e50..9393f11 100644 (file)
-<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');\r
-/**\r
- * CodeIgniter\r
- *\r
- * An open source application development framework for PHP 4.3.2 or newer\r
- *\r
- * @package            CodeIgniter\r
- * @author             ExpressionEngine Dev Team\r
- * @copyright  Copyright (c) 2008, EllisLab, Inc.\r
- * @license            http://codeigniter.com/user_guide/license.html\r
- * @link               http://codeigniter.com\r
- * @since              Version 1.0\r
- * @filesource\r
- */\r
-\r
-// ------------------------------------------------------------------------\r
-\r
-/**\r
- * CodeIgniter Inflector Helpers\r
- *\r
- * @package            CodeIgniter\r
- * @subpackage Helpers\r
- * @category   Helpers\r
- * @author             ExpressionEngine Dev Team\r
- * @link               http://codeigniter.com/user_guide/helpers/directory_helper.html\r
- */\r
-\r
-\r
-// --------------------------------------------------------------------\r
-\r
-/**\r
- * Singular\r
- *\r
- * Takes a plural word and makes it singular\r
- *\r
- * @access     public\r
- * @param      string\r
- * @return     str\r
- */    \r
-if ( ! function_exists('singular'))\r
-{      \r
-       function singular($str)\r
-       {\r
-               $str = strtolower(trim($str));\r
-               $end = substr($str, -3);\r
-       \r
-               if ($end == 'ies')\r
-               {\r
-                       $str = substr($str, 0, strlen($str)-3).'y';\r
-               }\r
-               elseif ($end == 'ses')\r
-               {\r
-                       $str = substr($str, 0, strlen($str)-2);\r
-               }\r
-               else\r
-               {\r
-                       $end = substr($str, -1);\r
-               \r
-                       if ($end == 's')\r
-                       {\r
-                               $str = substr($str, 0, strlen($str)-1);\r
-                       }\r
-               }\r
-       \r
-               return $str;\r
-       }\r
-}\r
-\r
-// --------------------------------------------------------------------\r
-\r
-/**\r
- * Plural\r
- *\r
- * Takes a singular word and makes it plural\r
- *\r
- * @access     public\r
- * @param      string\r
- * @param      bool\r
- * @return     str\r
- */    \r
-if ( ! function_exists('plural'))\r
-{      \r
-       function plural($str, $force = FALSE)\r
-       {\r
-               $str = strtolower(trim($str));\r
-               $end = substr($str, -1);\r
-\r
-               if ($end == 'y')\r
-               {\r
-                       $str = substr($str, 0, strlen($str)-1).'ies';\r
-               }\r
-               elseif ($end == 's')\r
-               {\r
-                       if ($force == TRUE)\r
-                       {\r
-                               $str .= 'es';\r
-                       }\r
-               }\r
-               else\r
-               {\r
-                       $str .= 's';\r
-               }\r
-\r
-               return $str;\r
-       }\r
-}\r
-\r
-// --------------------------------------------------------------------\r
-\r
-/**\r
- * Camelize\r
- *\r
- * Takes multiple words separated by spaces or underscores and camelizes them\r
- *\r
- * @access     public\r
- * @param      string\r
- * @return     str\r
- */    \r
-if ( ! function_exists('camelize'))\r
-{      \r
-       function camelize($str)\r
-       {               \r
-               $str = 'x'.strtolower(trim($str));\r
-               $str = ucwords(preg_replace('/[\s_]+/', ' ', $str));\r
-               return substr(str_replace(' ', '', $str), 1);\r
-       }\r
-}\r
-\r
-// --------------------------------------------------------------------\r
-\r
-/**\r
- * Underscore\r
- *\r
- * Takes multiple words separated by spaces and underscores them\r
- *\r
- * @access     public\r
- * @param      string\r
- * @return     str\r
- */    \r
-if ( ! function_exists('underscore'))\r
-{\r
-       function underscore($str)\r
-       {\r
-               return preg_replace('/[\s]+/', '_', strtolower(trim($str)));\r
-       }\r
-}\r
-\r
-// --------------------------------------------------------------------\r
-\r
-/**\r
- * Humanize\r
- *\r
- * Takes multiple words separated by underscores and changes them to spaces\r
- *\r
- * @access     public\r
- * @param      string\r
- * @return     str\r
- */    \r
-if ( ! function_exists('humanize'))\r
-{      \r
-       function humanize($str)\r
-       {\r
-               return ucwords(preg_replace('/[_]+/', ' ', strtolower(trim($str))));\r
-       }\r
-}\r
-       \r
-\r
-/* End of file inflector_helper.php */\r
+<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
+/**
+ * CodeIgniter
+ *
+ * An open source application development framework for PHP 4.3.2 or newer
+ *
+ * @package            CodeIgniter
+ * @author             ExpressionEngine Dev Team
+ * @copyright  Copyright (c) 2008, EllisLab, Inc.
+ * @license            http://codeigniter.com/user_guide/license.html
+ * @link               http://codeigniter.com
+ * @since              Version 1.0
+ * @filesource
+ */
+
+// ------------------------------------------------------------------------
+
+/**
+ * CodeIgniter Inflector Helpers
+ *
+ * @package            CodeIgniter
+ * @subpackage Helpers
+ * @category   Helpers
+ * @author             ExpressionEngine Dev Team
+ * @link               http://codeigniter.com/user_guide/helpers/directory_helper.html
+ */
+
+
+// --------------------------------------------------------------------
+
+/**
+ * Singular
+ *
+ * Takes a plural word and makes it singular
+ *
+ * @access     public
+ * @param      string
+ * @return     str
+ */    
+if ( ! function_exists('singular'))
+{      
+       function singular($str)
+       {
+               $str = strtolower(trim($str));
+               $end = substr($str, -3);
+       
+               if ($end == 'ies')
+               {
+                       $str = substr($str, 0, strlen($str)-3).'y';
+               }
+               elseif ($end == 'ses')
+               {
+                       $str = substr($str, 0, strlen($str)-2);
+               }
+               else
+               {
+                       $end = substr($str, -1);
+               
+                       if ($end == 's')
+                       {
+                               $str = substr($str, 0, strlen($str)-1);
+                       }
+               }
+       
+               return $str;
+       }
+}
+
+// --------------------------------------------------------------------
+
+/**
+ * Plural
+ *
+ * Takes a singular word and makes it plural
+ *
+ * @access     public
+ * @param      string
+ * @param      bool
+ * @return     str
+ */    
+if ( ! function_exists('plural'))
+{      
+       function plural($str, $force = FALSE)
+       {
+               $str = strtolower(trim($str));
+               $end = substr($str, -1);
+
+               if ($end == 'y')
+               {
+                       $str = substr($str, 0, strlen($str)-1).'ies';
+               }
+               elseif ($end == 's')
+               {
+                       if ($force == TRUE)
+                       {
+                               $str .= 'es';
+                       }
+               }
+               else
+               {
+                       $str .= 's';
+               }
+
+               return $str;
+       }
+}
+
+// --------------------------------------------------------------------
+
+/**
+ * Camelize
+ *
+ * Takes multiple words separated by spaces or underscores and camelizes them
+ *
+ * @access     public
+ * @param      string
+ * @return     str
+ */    
+if ( ! function_exists('camelize'))
+{      
+       function camelize($str)
+       {               
+               $str = 'x'.strtolower(trim($str));
+               $str = ucwords(preg_replace('/[\s_]+/', ' ', $str));
+               return substr(str_replace(' ', '', $str), 1);
+       }
+}
+
+// --------------------------------------------------------------------
+
+/**
+ * Underscore
+ *
+ * Takes multiple words separated by spaces and underscores them
+ *
+ * @access     public
+ * @param      string
+ * @return     str
+ */    
+if ( ! function_exists('underscore'))
+{
+       function underscore($str)
+       {
+               return preg_replace('/[\s]+/', '_', strtolower(trim($str)));
+       }
+}
+
+// --------------------------------------------------------------------
+
+/**
+ * Humanize
+ *
+ * Takes multiple words separated by underscores and changes them to spaces
+ *
+ * @access     public
+ * @param      string
+ * @return     str
+ */    
+if ( ! function_exists('humanize'))
+{      
+       function humanize($str)
+       {
+               return ucwords(preg_replace('/[_]+/', ' ', strtolower(trim($str))));
+       }
+}
+       
+
+/* End of file inflector_helper.php */
 /* Location: ./system/helpers/inflector_helper.php */
\ No newline at end of file