dms/twig-extension-bundle

DMS Twig Extension Bundle, leverages Fabien Potencier's extra twig extensions for your website.

Installs: 279 584

Dependents: 2

Suggesters: 0

Security: 0

Stars: 19

Watchers: 4

Forks: 7

Open Issues: 2

Type:symfony-bundle

v2.1.0 2017-08-18 22:24 UTC

This package is auto-updated.

Last update: 2024-04-18 05:22:03 UTC


README

This bundle leverages a collection of Fabien Potencier's Twig Extensions for use in your application.

Extensions

Fabien's "Twig Extensions"

Available at Fabien's repository these extensions are considered useful but do not belong in the Core of Twig, so they have been moved to this separate repository, they are:

  • Text: truncate and wordwrap filter
  • Debug: retrieves the token parser
  • Intl: localized date filter
  • i18n: trans filter and block (this extension conflicts with standard Symfony translator, so it is off by default, see Usage below.)

Further documentation is available in the repository.

DMS Extensions

These are custom extensions which I find myself writing over and over for new projects.

  • Textual Date: converts timestamp into dates like: 2 days ago (docs)

Installing

Simply run this

composer require dms/twig-extension-bundle

Load the bundle in your AppKernel

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new DMS\Bundle\TwigExtensionBundle\DMSTwigExtensionBundle(),
    );
}

Usage

To control which extensions should be enabled, you can optionally add configuration settings in app/config.yml:

# Default settings
dms_twig_extension:
    fabpot:
        array: true
        date: true
        i18n: false
        intl: true
        text: true
    dms:
        textual_date: true
        pad_string: true

Extensions set to false will not be loaded. Please refer to the extensions documentation for detailed usage on each one.