Say I am writing a manual for a product, and I have a series of pages named: "Chapter 1", "Section 1.1", "Section 1.2", "Chapter 2", "Section 2.1"

Can I use drupal view to generate a "table of content" page like this:

http://views-help.doc.logrus.com/

  • Chapter 1
    • Section 1.1
    • Section 1.2
  • Chapter 2
    • Section 2.1

or any module that can do this job? thanks!

By using the "html list" format of "view" module, I can only get a list without hierarchy:

  • Chapter 1
  • Section 1.1
  • Section 1.2
  • Chapter 2
  • Section 2.1

I am using drupal 7

link|improve this question
feedback

1 Answer

What you are looking for is the Book module that comes with core. You can see it in action with the Drupal documentation pages; The structure that you need is in the block on the right. I expect that Views also provides some Book module integration. If not you can look at the code used to display the book menu block.

There are also a number of contributed modules that extend the Book module which are worth looking into.

link|improve this answer
seems that book module do not provide generating a table of content page for each single book. it only gives a Book navigation block and menu – xaon Dec 25 '11 at 12:41
The code that you want is in the block. Check book.module for the implementation and adapt it in your own module or block and display in a page. – coleopterist Jan 6 at 16:00
feedback

Your Answer

 
or
required, but never shown

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