Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <h1>List of All Structures With Associated Categories</h1>
- #set($allstructures = $structures.findStructures(true))
- <ul>
- #foreach($structure in $allstructures)
- <li>
- <h2>$structure.name</h2>
- <ul>
- #foreach($field in $structure.getFields())
- #if($field.fieldType=="category")
- <li>
- #set($thiscat = $categories.getCategoryByInode($field.values))
- $thiscat.key
- <ul>
- #foreach($subcat in $categories.getChildrenCategories($thiscat))
- <li>$subcat.key</li>
- #end
- </ul>
- </li>
- #end
- #end
- </ul>
- </li>
- #end
- </ul>
Advertisement
Add Comment
Please, Sign In to add comment