You are here

function webform_disable_page_cache in Webform 7.4

Same name and namespace in other branches
  1. 6.3 webform.module \webform_disable_page_cache()
  2. 7.3 webform.module \webform_disable_page_cache()

Disable the Drupal page cache.

3 calls to webform_disable_page_cache()
webform_results_submissions in includes/webform.report.inc
Retrieve lists of submissions for a given webform.
webform_submission_access in ./webform.module
Access function for Webform submissions.
webform_submission_page in includes/webform.submissions.inc
Menu callback; Present a Webform submission page for display or editing.

File

./webform.module, line 5013
This module provides a simple way to create forms and questionnaires.

Code

function webform_disable_page_cache() {
  drupal_page_is_cacheable(FALSE);
}