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:

  • Item 1
      test
    • Item 1.1
    • Item 1.2
    • Item 1.3
  • Item 2
    • Item 2.1
    • Item 2.2
    • Item 2.3
      • Item 2.3.1
      • Item 2.3.2
      • Item 2.3.3
  • Item 3
  • If possible can anybody help me with an example.

    link|improve this question

    feedback

    1 Answer

    up vote 1 down vote accepted

    Yes it's possible, if you pass in an array with keys of data and children for each item that has a sub-list, for example:

    $items = array(
      array(
        'data' => 'Item 1',
        'children' => array(
          array(
            'data' => 'Item 1.1',
            'children' => array(
              'Item 1.1.1',
              'Item 1.1.2'
            )
          ),
          array(
            'data' => 'Item 1.2'
            'children' => array(
              'Item 1.2.1',
              'Item 1.2.2'
            )
          )
        )
      ),
      array(
        'data' => 'Item 2',
        'children' => array(
          // etc...
        )
      )
    );
    
    $output = theme('item_list', array('items' => $items));
    

    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.

    link|improve this answer
    feedback

    Your Answer

     
    or
    required, but never shown

    Not the answer you're looking for? Browse other questions tagged or ask your own question.