function theme_example_node_list in Coder 7
Same name and namespace in other branches
- 7.2 coder_upgrade/tests/old/samples/example.module \theme_example_node_list()
File
- coder_upgrade/
tests/ old/ samples/ example.module, line 1492
Code
function theme_example_node_list($items = NULL, $title = NULL) {
// Render one specific child of the current element.
$output = '<blink>' . drupal_render($element['child1']) . '</blink>';
// Render all the remaining children of the current element.
$output .= drupal_render($element);
return $output;
}