| 1 |
<?php
|
| 2 |
// $Id: layout_regular.inc,v 1.1 2007/03/23 15:25:37 bpocanada Exp $
|
| 3 |
|
| 4 |
// to do theme mail for node_blaster
|
| 5 |
$description = 'regular';
|
| 6 |
$context = 'page';
|
| 7 |
|
| 8 |
/**
|
| 9 |
* theme_epublish_layout_regular: A themeable function to produce a list of section topics and their nodes.
|
| 10 |
*
|
| 11 |
* @param $topics
|
| 12 |
* An array of topics
|
| 13 |
* @param $params
|
| 14 |
* An associative array of parameters. This exists so that the function
|
| 15 |
* can be themed to handle whatever value(s) the theme designer wants passed
|
| 16 |
* into the layout. For example, an image might be passed into the function
|
| 17 |
* using $params = ('image_path' => $url, 'image_width' => $width, 'image_height' => $height, 'caption' => $caption)
|
| 18 |
*
|
| 19 |
* @return
|
| 20 |
* An HTML-formatted list of topics and their nodes.
|
| 21 |
*/
|
| 22 |
function theme_node_blaster_layout_regular($topics, $params=NULL) {
|
| 23 |
// TODO
|
| 24 |
return '';
|
| 25 |
}
|
| 26 |
?>
|