You are here

function _echo_page in Echo 6

Displays a page with the selected title, comment, and theme.

1 string reference to '_echo_page'
echo_menu in ./echo.module
Implements hook_menu().

File

./echo.module, line 82
The echo module converts text into a fully-themed page.

Code

function _echo_page() {
  global $theme, $custom_theme;
  if ($custom_theme = _echo_request('theme')) {
    $theme = NULL;
    init_theme();
  }
  return _echo_request('content');
}