staspiv / knp-time-bundle
Knplabs time bundle makes your dates look sensible and descriptive
Installs: 69
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 105
Type:symfony-bundle
Requires
- php: >=5.3.3
- symfony/config: ~2.3|~3.0
- symfony/dependency-injection: ~2.3|~3.0
- symfony/templating: ~2.3|~3.0
- symfony/translation: ~2.3|~3.0
Requires (Dev)
- phpunit/phpunit: ^4.8
Suggests
- symfony/twig-bundle: to use the Twig time_diff function
This package is not auto-updated.
Last update: 2025-01-04 19:32:17 UTC
README
This bundle does one simple job: takes dates and gives you friendly "2 hours ago"-type messages. Woh!
Last edited {{ post.updatedAt|ago }} <-- Last edited 1 week ago -->
The date formatted can be translated into any language, and may are supported out of the box.
INSTALLATION via Composer
composer require knplabs/knp-time-bundle
CONFIGURATION
Register the bundle:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Knp\Bundle\TimeBundle\KnpTimeBundle(), ); // ... }
Enable the translation component if you haven't already done it:
# app/config/config.yml framework: # ... translator: { fallback: '%locale%' } # uncomment this line if you see this line commented
USAGE
In PHP!
<?php // Use the helper with Php echo $view['time']->diff($dateTime); // returns something like "3 minutes ago"
In Twig!
{{ someDateTimeVariable|ago }} ... or use the equivalent function {{ time_diff(someDateTimeVariable) }}
TESTS
If you want to run tests, please check that you have installed dev dependencies.
./vendor/bin/phpunit
Maintainers
Anyone can contribute to this repository (and it's warmly welcomed!). The following people maintain and can merge into this library:
- akovalyov
- weaverryan