You are here

function theme_recipe_list in Recipe 5

Displays a single one level list. Called for each group of items at the same depth.

Return value

string the output for this list.

1 theme call to theme_recipe_list()
recipe_build_index in ./recipe.module
Recursively traverses the term tree to construct the index.

File

./recipe.module, line 1519
recipe.module - share recipes for drupal 5.x

Code

function theme_recipe_list(&$output) {
  if ($output != '') {
    return "<ul>" . $output . "</ul>\n";
  }
  return '';
}