taavit / twig-extra-bundle
This bundles provides extra twig extensions and filter (DateTime prettifier)
Package info
github.com/taavit/TwigExtraBundle
Type:symfony-bundle
pkg:composer/taavit/twig-extra-bundle
0.1.0
2013-08-08 08:59 UTC
Requires
- php: >=5.3.3
- symfony/symfony: >=2.1,<3
This package is not auto-updated.
Last update: 2026-03-28 20:15:22 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)