NAME
Mojolicious::Plugin::TimeAgo - DateTime TimeAgo Mojolicious Plugin
VERSION
version 0.3
SYNOPSIS
# Mojolicious
$self->plugin('TimeAgo' => { default => 'en' });
# Mojolicious::Lite
plugin 'TimeAgo' => { default => 'en' };
DESCRIPTION
Mojolicious::Plugin::TimeAgo is a Mojolicious plugin that provide a feature to convert DateTime objects to "just now" string, for example.
It's a simple wrapper about DateTimeX::Format::Ago module class.
METHODS
time_ago([DateTime obj])
Method that translate you DateTime object into human readaable string.
# Mojolicious::Controller
my $date = $self->time_ago( DateTime->now );
or ...
# view template
%= time_ago DateTime->now
<%= time_ago DateTime->now %>
CONFIGURATION
default
default
is the language configuration that your DateTime will be translated.
See more about language in DateTimeX::Format::Ago.
TODO
* [done] Language support
* [done] Get and use language by stash
* Integration with I18N mojolicious plugin
BUGS AND ISSUES
Please report any bugs or feature requests at https://github.com/dvinciguerra/mojolicious-plugin-timeago/issues
AUTHOR
Daniel Vinciguerra <daniel.vinciguerra@bivee.com.br>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Daniel Vinciguerra (dvinci@cpan.org).
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.