Skip to content
This repository has been archived by the owner on Nov 23, 2022. It is now read-only.

nerds-and-company/craft-inflect

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Inflection Craft Plugin

This plugin enables a several Twig filters to transform the inflection of strings using the following methods:

  • pluralize
  • singularize
  • camelize
  • dasherize
  • pascalize
  • titleize
  • underscore
  • humanize
  • hyphenate
  • ordinalize
  • slugify

Download

This github project is for developers using composer to require dependencies. Do not download the zip from github, but download on the releases page.

Usage Examples

{{ 'bum'|pluralize(3) }} # bums
{{ 'person'|pluralize }} # people
{{ 'people'|pluralize(1) }} # person
 {% set entries = craft.entries.find() %}
 {% set size = entries|length %}
 You have: {{ size }} {{ 'entry'|pluralize(size) }} # You have: 3 entries
 The {{ size|ordinalize }} entry # The third entry
{{ 'My string to inflect'|slugify }} # my-string-to-inflect
{{ 'my-string-to-inflect'|camelize }} # myStringToInflect
{{ 'myStringToInflect'|underscore }} # my_string_to_inflect
{{ 'my_string_to_inflect'|dasherize }} # my-string-to-inflect
{{ 'my-string-to-inflect'|pascalize }} # MyStringToInflect
{{ 'MyStringToInflect'|hyphenate }} # my-string-to-inflect
{{ 'my-string-to-inflect'|titleize }} # My String To Inflect
{{ 'My String To Inflect'|slugify|camelize }} # myStringToInflect

MIT Licence

Original Author Luke Holder Contributors: Tim Kelty

About

Plugin for Craft CMS which adds an inflection twig extension.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%