Install
Works with Drupal: 7.xUsing dev releases is not recommended, except for testing.
Using Composer to manage Drupal site dependencies
Downloads
Download tar.gz
9.22 KB
MD5: 09c2bc59f6f356964779fbbebc0ae377
SHA-1: 69d71cdc8d57ff78ea5b848d577c80de06182749
SHA-256: f1677a369c38d32737808c601a40abf69346d1cac9f78443a363a6b86d29f18f
Download zip
11.37 KB
MD5: 8c00a759f7510a02e67ba0cd14c06195
SHA-1: 51b452629d8de44e1806d87845caf7cd8deef60e
SHA-256: 5d269297c8be87f06fdec81c3891393430c69c3b60aae8ee4cc47df4144c41f0
Release notes
Echo
Wraps content in a themed webpage.
This very simple module contains only one externally useful function:
echo_themed_page($title, $content, $theme)-
Returns a page themed for the anonymous user.
Generates the text of a fully-themed Drupal page. The rendered page is returned as a text string instead of being sent to the browser. The theme system can thus be used to style any HTML message as if it had been generated by the live website.
- Parameters
-
$titleThe text to display as the page title. -
$contentThe text to display in the main page content region. -
$themeThe machine-readable name of the theme to use. - Return value
-
A string containing the fully-themed page.