phptemplate_box

Versions
4.7 – 5
phptemplate_box($title, $content, $region = 'main')

Prepare the values passed to the theme_box function to be passed into a pluggable template engine.

Code

themes/engines/phptemplate/phptemplate.engine, line 353

<?php
function phptemplate_box($title, $content, $region = 'main') {
  return _phptemplate_callback('box', array(
    'content' =>   $content,
    'region'  =>   $region,
    'title'   =>   $title
  ));
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.