================
INSTALLATION
================
Download jquery.timeago.js from http://timeago.yarp.com/jquery.timeago.js and
put it in the timeago module folder. For example, if you put the timeago module
folder in sites/all/modules, then the timeago plugin should exist at
sites/all/modules/timeago/jquery.timeago.js.
============
OVERVIEW
============
This module uses the jQuery timeago plugin to create dynamically updating
"time ago" dates. That is, the plugin turns static dates like
"October 10, 2011" into "10 minutes ago" and updates the time ago every minute.
This allows you to include "time ago" dates in cached content for most users
while degrading gracefully for users with JavaScript disabled. For more
information and examples, visit the jQuery plugin's homepage at
http://timeago.yarp.com/
============
FEATURES
============
- The ability to use Timeago dates for virtually any date on the site
including node created dates and comment created/changed dates
- Tokens for node created dates and comment created/changed dates
- An option to use the new HTML5 "time" element, abbr, or span
- An API to turn any UNIX timestamp into a timeago date
Additionally the Statuses module integrates with Timeago
(https://drupal.org/project/statuses).
To use Timeago dates for virtually every date on your site, visit
admin/config/regional/date-time. For each date format, you can choose to use
one of the Timeago formats provided by default, or you can create a new format
that uses Timeago by visiting admin/config/regional/date-time/formats/add and
entering a format string like this into the "Format string" box:
<\s\p\a\n \c\l\a\s\s="\t\i\m\e\a\g\o" \t\i\t\l\e="c">D, n/j/Y - g:ia</\s\p\a\n>
More information about how to structure custom formats is available in the API
section below.
=======
API
=======
The easiest way to construct a Timeago date is to use timeago_format_date():
/**
* Converts a timestamp into a Timeago date.
*
* @param $timestamp
* A UNIX timestamp.
* @param $date
* (Optional) A human-readable date (will be displayed if JS is disabled).
* If not provided, the site default date format is used.
* @return
* HTML representing a Timeago-friendly date.
*/
function timeago_format_date($timestamp, $date = NULL)
If you want to manually construct a Timeago date, you can do so by creating
a timeago-compatible HTML element like below:
<abbr class="timeago" title="2008-07-17T09:24:17Z">July 17, 2008</abbr>
<span class="timeago" title="2008-07-17T09:24:17Z">July 17, 2008</span>
<time class="timeago" datetime="2008-07-17T09:24:17Z">July 17, 2008</time>
The <time> tag is new in HTML5. The markup above will be turned into something
like this:
<abbr class="timeago" title="July 17, 2008">3 years ago</abbr>
The timestamp in the title/datetime attribute is what the Timeago plugin uses
to calculate the time ago. It must be in ISO-8601 format. The easiest way to
get a date in that format is to call format_date($timestamp, 'custom', 'c');
NOTE: if you construct a Timeago date manually, you also need to manually
add the Timeago JavaScript to the page by calling timeago_add_js().
===============
TRANSLATION
===============
This module produces strings like "a moment ago" and "10 minutes ago" using
JavaScript. There are two ways to translate these strings.
The first option is to enable the i18n (https://www.drupal.org/project/i18n)
submodule "i18n_variable" and then set the Timeago variables as translatable at
/admin/config/regional/i18n/variable.
The second option is to provide a translation override file. Examples of such
files are available in the "locales" folder of the Timeago library's GitHub
project at https://github.com/rmm5t/jquery-timeago. Any translation files you
use should be placed in the the same folder as the Timeago library
(jquery.timeago.js), which is typically in the Timeago module's folder. For
example, you could put the Russian translation file at
/sites/all/modules/timeago/jquery.timeago.ru.js. The appropriate translation
override file will be automatically added to the page if necessary.
==========
AUTHOR
==========
This module was written by Isaac Sukin (IceCreamYou).
https://drupal.org/user/201425
The jQuery Timeago plugin was written by Ryan McGeary (rmm5t).
http://ryan.mcgeary.org/
The Drupal project is located at https://drupal.org/project/timeago
The jQuery plugin is located at http://timeago.yarp.com/
and developed at https://github.com/rmm5t/jquery-timeago
File
README.txt
View source
================
INSTALLATION
================
Download jquery.timeago.js from http://timeago.yarp.com/jquery.timeago.js and
put it in the timeago module folder. For example, if you put the timeago module
folder in sites/all/modules, then the timeago plugin should exist at
sites/all/modules/timeago/jquery.timeago.js.
============
OVERVIEW
============
This module uses the jQuery timeago plugin to create dynamically updating
"time ago" dates. That is, the plugin turns static dates like
"October 10, 2011" into "10 minutes ago" and updates the time ago every minute.
This allows you to include "time ago" dates in cached content for most users
while degrading gracefully for users with JavaScript disabled. For more
information and examples, visit the jQuery plugin's homepage at
http://timeago.yarp.com/
============
FEATURES
============
- The ability to use Timeago dates for virtually any date on the site
including node created dates and comment created/changed dates
- Tokens for node created dates and comment created/changed dates
- An option to use the new HTML5 "time" element, abbr, or span
- An API to turn any UNIX timestamp into a timeago date
Additionally the Statuses module integrates with Timeago
(https://drupal.org/project/statuses).
To use Timeago dates for virtually every date on your site, visit
admin/config/regional/date-time. For each date format, you can choose to use
one of the Timeago formats provided by default, or you can create a new format
that uses Timeago by visiting admin/config/regional/date-time/formats/add and
entering a format string like this into the "Format string" box: