Created
March 29, 2012 23:42
-
-
Save evolvingweb/2244986 to your computer and use it in GitHub Desktop.
mymodule_node_list()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function mymodule_node_list() { | |
$items = array( | |
array('Suzanne'), | |
array('Alex'), | |
array('Tavish'), | |
array('Thomas'), | |
); | |
//asks Drupal to render this as a list | |
return array( | |
'#theme' => 'item_list', | |
'#items' => $items, | |
'#type' => ‘ul’, | |
); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment