README.txt 888 B

12345678910111213141516171819202122232425262728
  1. [1]Echo
  2. Wraps content in a themed webpage.
  3. This very simple module contains only one externally useful function:
  4. echo_themed_page($title, $content, $theme)
  5. Returns a page themed for the anonymous user.
  6. Generates the text of a fully-themed Drupal page. The rendered
  7. page is returned as a text string instead of being sent to the
  8. browser. The theme system can thus be used to style any HTML
  9. message as if it had been generated by the live website.
  10. Parameters
  11. $title The text to display as the page title.
  12. $content The text to display in the main page content
  13. region.
  14. $theme The machine-readable name of the theme to use.
  15. Return value
  16. A string containing the fully-themed page.
  17. References
  18. 1. http://drupal.org/project/echo