You are here

function boost_db_get_age in Boost 6

2 calls to boost_db_get_age()
boost_db_get_ttl in ./boost.module
boost_db_is_expired in ./boost.module

File

./boost.module, line 4582
Provides static file caching for Drupal text output. Pages, Feeds, ect...

Code

function boost_db_get_age($filename) {
  $boost_db = boost_get_db($filename);
  return $boost_db['expire'] != 0 ? $boost_db['expire'] : FALSE;
}