Tag: subfolder
Subfolder Sort Order
I have a site that has monthly assignments; each month in their own subfolder. I would like them to be sorted by date but the default is alpha. Have not looked to see how to change this yet, but wanted to get it out there. Probably not a big deal for most.
Happy New Year
Coby
1 comment(s)
/ cglusky
/ cglusky's dev notes
/ on January 1, 2007 at 05:56
folder_path (Smarty extension block)
The {folder_path} block is used to construct a "breadcrumb" trail.
It creates a list of folder objects, one for the current folder on up
to the top-level folder. Example: {folder_path folder=$folder_id}
<a href="{$folder.url}">{$folder.title}</a>
{/folder_path} Since this is a block function, you can use this in a Smarty template to format or modify as you see fit.
0 comment(s)
/ glen
/ Templates
/ on May 27, 2005 at 13:12
DEPRECATED: all_folders (Smarty extension block)
The {all_folders} block has been dropped
and has been replaced with the generic {all} block. To use it, change
{all_folders ...} to {all class="Folder" ...} and everything should
work just the same. The {all_folders} ... {/all_folders} block iterates through all the
folders and produces a template context for each folder. If the
parent=N parameter is provided, then only folders which are...
0 comment(s)
/ glen
/ Templates
/ on May 26, 2005 at 22:28
