Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/craue/twigextensionsbundle
Useful Twig extensions for your Symfony project.
https://github.com/craue/twigextensionsbundle
bundle php symfony symfony-bundle twig-extension
Last synced: 19 days ago
JSON representation
Useful Twig extensions for your Symfony project.
- Host: GitHub
- URL: https://github.com/craue/twigextensionsbundle
- Owner: craue
- License: mit
- Created: 2011-05-20T11:28:44.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2022-03-31T13:36:36.000Z (over 2 years ago)
- Last Synced: 2024-10-14T06:25:54.206Z (about 1 month ago)
- Topics: bundle, php, symfony, symfony-bundle, twig-extension
- Language: PHP
- Homepage:
- Size: 502 KB
- Stars: 78
- Watchers: 5
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Information
[![Build Status](https://travis-ci.org/craue/TwigExtensionsBundle.svg?branch=master)](https://travis-ci.org/craue/TwigExtensionsBundle)
TwigExtensionsBundle is a collection of useful Twig extensions for your Symfony project.
A live demo with code examples can is available at http://craue.de/symfony-playground/en/CraueTwigExtensions/.
## DecorateEmptyValueExtension
Provides an enhanced `default` filter, `craue_default`, to decorate empty values with a placeholder which can even be
HTML.Usually, if you want to use HTML, e.g. the HTML entity `—`, as value for the default filter in an HTML Twig
template you have to do cumbersome```twig
{{ somevalue | e | default('—') | raw }}
```to make it render properly. With this extension you can write
```twig
{{ somevalue | craue_default }}
```instead.
## ArrayHelperExtension
Provides the filters
- `craue_without` wrapping PHP's `array_diff` function,
- `craue_replaceKey` which adds/replaces an array entry (whereupon the key can be a variable),
- `craue_removeKey` which removes an array entry by key (whereupon the key can be a variable), and
- `craue_translateArray` which translates all entries in an array.## FormExtension
Provides a mechanism to render a form several times on one page. This is done by cloning the form prior to rendering
using the `craue_cloneForm` function.## StringHelperExtension
Provides the `craue_trailingDot` filter for ensuring that a text ends with a dot.
This comes in handy when using error messages (e.g. for validation) of vendor bundles (which are written like sentences
but are missing the trailing dots) together with your own ones (which should include the trailing dot).## FormatDateTimeExtension
Provides the filters `craue_date`, `craue_time`, and `craue_datetime` for locale-aware formatting of date, time, and
date/time values.## FormatNumberExtension
Provides the filters `craue_number`, `craue_currency`, and `craue_spellout` for locale-aware formatting of numbers and
currencies.## ChangeLanguageExtension
Provides the functions `craue_languageName` and `craue_availableLocales` as well as a template for implementing a
language change mechanism.# Installation
## Get the bundle
Let Composer download and install the bundle by running
```sh
composer require craue/twigextensions-bundle
```in a shell.
## Enable the bundle
If you don't use Symfony Flex, register the bundle manually:
```php
// in config/bundles.php
return [
// ...
Craue\TwigExtensionsBundle\CraueTwigExtensionsBundle::class => ['all' => true],
];
```Or, for Symfony 3.4:
```php
// in app/AppKernel.php
public function registerBundles() {
$bundles = [
// ...
new Craue\TwigExtensionsBundle\CraueTwigExtensionsBundle(),
];
// ...
}
```# Examples to use the extensions in your Twig template
## DecorateEmptyValueExtension
```twig
{{ someValueWhichMayBeEmpty | craue_default }}
{{ someValueWhichMayBeEmpty | craue_default('no value') }}
{{ someValueWhichMayBeEmpty | craue_default('–') }}
{{ someValueWhichMayBeEmpty | craue_default(0) }}
```## ArrayHelperExtension
```twig
{{ anArray | craue_without(aValueOrAnArray) | join(', ') }}
{{ ['red', 'green', 'yellow', 'blue'] | craue_without('yellow') | join(', ') }} will print "red, green, blue"
{{ ['red', 'green', 'yellow', 'blue'] | craue_without(['yellow', 'black', 'red']) | join(', ') }} will print "green, blue"{{ anArray | craue_replaceKey(key, value) | join(', ') }}
{% set newKey = 'key3' %}
{{ {'key1': 'value1', 'key2': 'value2'} | craue_replaceKey(newKey, 'value3') | join(', ') }} will print "value1, value2, value3"{{ anArray | craue_removeKey(key) | join(', ') }}
{{ {'key1': 'value1', 'key2': 'value2'} | craue_removeKey('key1') | join(', ') }} will print "value2"{{ anArray | craue_translateArray() | join(', ') }}
```## FormExtension
```twig
{% for myEntity in myEntities %}
{% set myFormInstance = craue_cloneForm(myForm) %}
{{ form_widget(myFormInstance) }}
{% endfor %}
```## StringHelperExtension
```twig
{{ aString | craue_trailingDot }}
{{ 'This text should end with a dot' | craue_trailingDot }}
{{ 'This text should end with exactly one dot.' | craue_trailingDot }}
```## FormatDateTimeExtension
```twig
with the current locale
date: {{ someDateTimeValue | craue_date }}
time: {{ someDateTimeValue | craue_time }}
both: {{ someDateTimeValue | craue_datetime }}with a specific locale
date: {{ someDateTimeValue | craue_date('de-DE') }}
time: {{ someDateTimeValue | craue_time('de') }}
both: {{ someDateTimeValue | craue_datetime('en-GB') }}
```## FormatNumberExtension
```twig
with the current locale
thousands separator: {{ someNumber | craue_number }}
default currency: {{ someNumber | craue_currency }}
specific currency: {{ someNumber | craue_currency('EUR') }}
spelled out number: {{ someNumber | craue_spellout }}with a specific locale
thousands separator: {{ someNumber | craue_number('de-DE') }}
default currency: {{ someNumber | craue_currency(null, 'de-DE') }}
specific currency: {{ someNumber | craue_currency('EUR', 'de-DE') }}
spelled out number: {{ someNumber | craue_spellout('de-DE') }}
```## ChangeLanguageExtension
There's a Twig template provided which you can use to render a "change language" menu like this:
```twig
{% include '@CraueTwigExtensions/ChangeLanguage/changeLanguage.html.twig' %}
```This will render a list of links to the current route in all defined languages. Wrap it in a div to style it via CSS.
Take a look at the template if you want to customize it.# Set/override default values
## DecorateEmptyValueExtension
```yaml
# in app/config/parameters.yml
craue_twig_extensions.decorateEmptyValue.placeholder: –
```## FormatDateTimeExtension
```yaml
# in app/config/parameters.yml
craue_twig_extensions.formatDateTime.datetype: full
craue_twig_extensions.formatDateTime.timetype: short
craue_twig_extensions.formatDateTime.timeZone: Europe/Berlin
```## FormatNumberExtension
```yaml
# in app/config/parameters.yml
craue_twig_extensions.formatNumber.currency: EUR
```## ChangeLanguageExtension
```yaml
# in app/config/parameters.yml
craue_twig_extensions.changeLanguage.availableLocales: [de, en, ru]
craue_twig_extensions.changeLanguage.showForeignLanguageNames: true
craue_twig_extensions.changeLanguage.showFirstUppercase: false
```You can also set the keys to be more specific about the locales:
```yaml
# in app/config/parameters.yml
craue_twig_extensions.changeLanguage.availableLocales:
de_DE: de
en: en
ru: ru
``````xml
de
en
ru```
# Advanced stuff
## Aliases
Optionally, you can define aliases for all provided filters/functions to be used within your project.
This allows you to use names you prefer instead of the pre-defined ones. E.g., if you don't like to write```twig
{{ somevalue | craue_default }}
```all the time, you may define an alias like `d` for the `craue_default` filter which allows you to write
```twig
{{ somevalue | d }}
```in your Twig templates. But pay attention to not accidentally override built-in filters/functions, although you
can do it intentionally.### DecorateEmptyValueExtension
```yaml
# in app/config/parameters.yml
craue_twig_extensions.decorateEmptyValue.filterAlias: d
```### ArrayHelperExtension
```yaml
# in app/config/parameters.yml
craue_twig_extensions.arrayHelper.withoutAlias: without
craue_twig_extensions.arrayHelper.replaceKeyAlias: replaceKey
craue_twig_extensions.arrayHelper.removeKeyAlias: removeKey
craue_twig_extensions.arrayHelper.translateArrayAlias: translateArray
```### FormExtension
```yaml
# in app/config/parameters.yml
craue_twig_extensions.form.cloneFormAlias: cloneForm
```### StringHelperExtension
```yaml
# in app/config/parameters.yml
craue_twig_extensions.stringHelper.trailingDotAlias: trailingDot
```### FormatDateTimeExtension
```yaml
# in app/config/parameters.yml
craue_twig_extensions.formatDateTime.dateFilterAlias: date
craue_twig_extensions.formatDateTime.timeFilterAlias: time
craue_twig_extensions.formatDateTime.dateTimeFilterAlias: datetime
```### FormatNumberExtension
```yaml
# in app/config/parameters.yml
craue_twig_extensions.formatNumber.numberFilterAlias: number
craue_twig_extensions.formatNumber.currencyFilterAlias: currency
craue_twig_extensions.formatNumber.spelloutFilterAlias: spellout
```### ChangeLanguageExtension
```yaml
# in app/config/parameters.yml
craue_twig_extensions.changeLanguage.languageNameAlias: languageName
craue_twig_extensions.changeLanguage.availableLocalesAlias: availableLocales
```## Enabling only specific extensions
By default, all provided extensions are enabled. If you're using only one or some of them, you may want to disable the
others. The following enables them all, so remove the ones you don't need:```yaml
# in app/config/config.yml
craue_twig_extensions:
enable_only:
- ArrayHelperExtension
- ChangeLanguageExtension
- DecorateEmptyValueExtension
- FormatDateTimeExtension
- FormatNumberExtension
- FormExtension
- StringHelperExtension
```