1
Hi;
xoops 2.5.9
site:
http://www.rossco.orgManagement of a menu template file is getting unwieldy due to large number of menu items. I want to split things by submenu, where submenu items are in a directory and include whatever items are in the directory, sorted by order. For example:
directory
00_Item1
01_Item2
...
This will allow me to easily edit a particular menu item without wading through a large file referencing the items individually.
I note that template files can be included individually by:
<{includeq file="$theme_name/tpl/some.tpl"}>
I want to do this:
<{includeq file="$theme_name/tpl/some_directory/*.tpl"}>
where they are included sorted as above
does "includeeq file" work on wildcards, as above, or is there another way to do this?
Smarty doc'm (for include) sez no:
https://www.smarty.net/docs/en/language.function.include.tplHave not found any doc'm for includeq for xoops
Thanks;
Bill