Im using drupal 7, I would like to know whether i can use the function theme_item_list() to implement multi-level list items. As below:
- test
- Item 1.1
- Item 1.2
- Item 1.3
- Item 2.1
- Item 2.2
- Item 2.3
- Item 2.3.1
- Item 2.3.2
- Item 2.3.3
If possible can anybody help me with an example.
Yes it's possible, if you pass in an array with keys of
data
andchildren
for each item that has a sub-list, for example:The
data
key represents the contents of the list item,children
is an array of list items to render as a separate list within that list item. The function is recursive and can handle any number of levels.