taavit / twig-extra-bundle
This bundles provides extra twig extensions and filter (DateTime prettifier)
Installs: 316
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 5
Forks: 2
Open Issues: 5
Type:symfony-bundle
Requires
- php: >=5.3.3
- symfony/symfony: >=2.1,<3
This package is not auto-updated.
Last update: 2025-03-01 15:14:53 UTC
README
##Installation via composer Update your composer.json
{ "require": { "taavit/TwigExtraBundle": "dev-master" } }
composer.phar update taavit/TwigExtraBundle
Update your AppKernel.php
public function registerBundles() { return array( // ... new Taavit\TwigExtraBundle\TwigExtraBundle(), // ... ); }
##Usage
To your DateTime object in twig (created,updated) you simply add '|prettify'. Example:
{{comment.created|prettify}}
and you will get nice formated when comment was added (5 days ago, yesterday, One year ago)