function boost_get_normal_cache_dir in Boost 7
Returns the relative normal cache dir. cache/normal.
3 calls to boost_get_normal_cache_dir()
- boost_htaccess_cache_dir_put in ./
boost.module - Overwrite old htaccess rules with new ones.
- boost_requirements in ./
boost.install - Implements hook_requirements().
- boost_transform_url in ./
boost.module - Given a URL give back eveything we know.
File
- ./
boost.module, line 538 - Caches generated output as a static file to be served directly from the webserver.
Code
function boost_get_normal_cache_dir() {
return variable_get('boost_root_cache_dir', BOOST_ROOT_CACHE_DIR) . '/' . variable_get('boost_normal_dir', BOOST_NORMAL_DIR);
}