You are here

function empty_page_empty in Empty Page 7

An Empty Page callback's empty content.

Return value

string $output

1 string reference to 'empty_page_empty'
empty_page_menu in ./empty_page.module
Implements hook_menu().

File

./empty_page.module, line 103
Empty Page module A simple empty page solution. Assists in creating empty menu callbacks, mostly used for pages that only consist of blocks.

Code

function empty_page_empty() {

  // Return a space so that an empty page can be used for 40x pages.
  return ' ';
}