summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/helpers/inflector_helper.rst
diff options
context:
space:
mode:
Diffstat (limited to 'user_guide_src/source/helpers/inflector_helper.rst')
-rw-r--r--user_guide_src/source/helpers/inflector_helper.rst23
1 files changed, 12 insertions, 11 deletions
diff --git a/user_guide_src/source/helpers/inflector_helper.rst b/user_guide_src/source/helpers/inflector_helper.rst
index 717ecc678..d0cb17c18 100644
--- a/user_guide_src/source/helpers/inflector_helper.rst
+++ b/user_guide_src/source/helpers/inflector_helper.rst
@@ -28,50 +28,51 @@ The following functions are available:
.. function:: singular($str)
:param string $str: Input string
- :returns: string
+ :returns: A singular word
+ :rtype: string
Changes a plural word to singular. Example::
echo singular('dogs'); // Prints 'dog'
-
.. function:: plural($str)
:param string $str: Input string
- :returns: string
+ :returns: A plular word
+ :rtype: string
Changes a singular word to plural. Example::
echo plural('dog'); // Prints 'dogs'
-
.. function:: camelize($str)
:param string $str: Input string
- :returns: string
+ :returns: Camelized string
+ :rtype: string
Changes a string of words separated by spaces or underscores to camel
case. Example::
echo camelize('my_dog_spot'); // Prints 'myDogSpot'
-
.. function:: underscore($str)
:param string $str: Input string
- :returns: string
+ :returns: String containing underscores instead of spaces
+ :rtype: string
Takes multiple words separated by spaces and underscores them.
Example::
echo underscore('my dog spot'); // Prints 'my_dog_spot'
-
.. function:: humanize($str[, $separator = '_'])
:param string $str: Input string
:param string $separator: Input separator
- :returns: string
+ :returns: Humanized string
+ :rtype: string
Takes multiple words separated by underscores and adds spaces between
them. Each word is capitalized.
@@ -84,11 +85,11 @@ The following functions are available:
echo humanize('my-dog-spot', '-'); // Prints 'My Dog Spot'
-
.. function:: is_countable($word)
:param string $word: Input string
- :returns: bool
+ :returns: TRUE if the word is countable or FALSE if not
+ :rtype: bool
Checks if the given word has a plural version. Example::