You are here

function theme_node_list in Drupal 4

Same name and namespace in other branches
  1. 5 modules/node/node.module \theme_node_list()
  2. 6 modules/node/node.module \theme_node_list()

Format a listing of links to nodes.

1 theme call to theme_node_list()
node_title_list in modules/node.module
Gather a listing of links to nodes.

File

modules/node.module, line 83
The core that allows content to be submitted to the site.

Code

function theme_node_list($items, $title = NULL) {
  return theme('item_list', $items, $title);
}