You are here

public static function RestfulManager::pageFooter in RESTful 7

Performs end-of-request tasks.

This function sets the page cache if appropriate, and allows modules to react to the closing of the page by calling hook_exit().

This is just a wrapper around drupal_page_footer() so extending classes can override this method if necessary.

See also

drupal_page_footer().

1 call to RestfulManager::pageFooter()
restful_delivery in ./restful.module
Returns data in JSON format.

File

includes/RestfulManager.php, line 367
Contains \RestfulManager.

Class

RestfulManager
@file Contains \RestfulManager.

Code

public static function pageFooter() {
  drupal_page_footer();
}