protected static function Response::pageFooter in RESTful 7.2
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
1 call to Response::pageFooter()
- Response::send in src/
Http/ Response.php - Sends HTTP headers and content.
File
- src/
Http/ Response.php, line 393 - Contains \Drupal\restful\Http\Response.
Class
Namespace
Drupal\restful\HttpCode
protected static function pageFooter() {
drupal_page_footer();
}