Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 397 Bytes

07-inflection.md

File metadata and controls

16 lines (12 loc) · 397 Bytes

Inflection

{% set inflector = create('craft\\helpers\\Inflector') %}
{% set cacti = inflector.pluralize('cactus') %}
{% set cactus = inflector.singularize(cacti) %}
{% set totalCacti = 4 %}
{% set bestCactus = 3 %}

{{ "I love the #{inflector.ordinalize(totalCacti)} #{cactus}." }}
{{ "I love the #{totalCacti > 1 ? cacti : cactus }." }}