You are here

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

drupal_page_footer().

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

Response

Namespace

Drupal\restful\Http

Code

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