hoannv / KnpTimeBundle

Provides helpers for time manipulation

Home Page:http://knplabs.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Provide a time helper to Symfony2 projects.

INSTALLATION

Composer

composer require knplabs/knp-time-bundle
composer --dev update knplabs/knp-time-bundle

CONFIGURATION

Register the bundle:

<?php
// app/AppKernel.php
public function registerBundles()
{
    $bundles = array(
		// ...
		new Knp\Bundle\TimeBundle\KnpTimeBundle(),
	);
	// ...
}

Enable the helper in your config.yml:

# app/config/config.yml
knp_time: ~      # Enable the helper for use in templates

Also enable translation component if you haven't do it yet.

# app/config/config.yml
framework:
    # ...
    translator:      { fallback: %locale% } # uncomment this line if you see this line commented

USAGE

<?php
// Use the helper with Php
echo $view['time']->diff($dateTime); // returns something like "3 minutes ago"
// Use the helper with twig
{{ time_diff(DateTimeObject) }}

Note:

If you are using a different language code than two letters (en_US for example) then should copy the TimeBundle's language files and rename the middle part according to your language:

from:
MyProject/vendor/bundles/Knp/Bundle/TimeBundle/Resources/translations/time.en.xliff
MyProject/vendor/bundles/Knp/Bundle/TimeBundle/Resources/translations/time.fr.xliff

to:
MyProject/app/Resources/translations/time.en_US.xliff
MyProject/app/Resources/translations/time.fr_FR.xliff

Don't forget to clear your cache afterwards.

About

Provides helpers for time manipulation

http://knplabs.com

License:MIT License