1 drupal.inc drupal_page_is_cacheable($allow_caching = NULL)

Determines the cacheability of the current page.

Deprecated

since 1.0.0

See also

backdrop_page_is_cacheable()

Related topics

File

core/includes/drupal.inc, line 136
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_page_is_cacheable($allow_caching = NULL) {
  return backdrop_page_is_cacheable($allow_caching);
}