How to display full simple text gallery tree (like sitemap, all levels) using galery and subgallery titles (not directory names)?
Can anybody help me, pls? Thank you!
Text gallery tree
Text gallery tree
CMS Made Simple™ 1.11.2 "Isabela"
PHP (phpversion) 5.3.21
CMSMailer 5.2.1
CMSPrinting 1.0.3
FileManager 1.4.1
MenuManager 1.8.4
MicroTiny 1.2.3
ModuleManager 1.5.5
News 2.12.9
Search 1.7.7
ThemeManager 1.1.7
TinyMCE 2.9.12
Gallery 1.6.1
CGExtensions 1.31.4
FormBuilder 0.7.3
Captcha 0.4.6
CGSmartImage 1.10.1
CGSimpleSmarty 1.5.2
CGGoogleMaps 2.4.5
GoogleMaps 0.2.1
PHP (phpversion) 5.3.21
CMSMailer 5.2.1
CMSPrinting 1.0.3
FileManager 1.4.1
MenuManager 1.8.4
MicroTiny 1.2.3
ModuleManager 1.5.5
News 2.12.9
Search 1.7.7
ThemeManager 1.1.7
TinyMCE 2.9.12
Gallery 1.6.1
CGExtensions 1.31.4
FormBuilder 0.7.3
Captcha 0.4.6
CGSmartImage 1.10.1
CGSimpleSmarty 1.5.2
CGGoogleMaps 2.4.5
GoogleMaps 0.2.1
Re: Text gallery tree
I use this template to do just that:
Code: Select all
<ul>
{assign var='g_prevdepth' value=1}
{foreach from=$images item=image name=img}
{if $image->depth > $g_prevdepth}
{repeat string="<ul>" times=$image->depth-$g_prevdepth}
{elseif $image->depth < $g_prevdepth}
{repeat string="</li></ul>" times=$g_prevdepth-$image->depth}
</li>
{elseif $smarty.foreach.img.index > 0}</li>
{/if}
<li><a href="{$image->file}" title="{$image->titlename}">{$image->titlename}</a>
{assign var='g_prevdepth' value=$image->depth}
{/foreach}
{repeat string="</li></ul>" times=$image->depth-1}</li>
</ul>
Re: Text gallery tree
CMS Made Simple™ 1.11.2 "Isabela"
PHP (phpversion) 5.3.21
CMSMailer 5.2.1
CMSPrinting 1.0.3
FileManager 1.4.1
MenuManager 1.8.4
MicroTiny 1.2.3
ModuleManager 1.5.5
News 2.12.9
Search 1.7.7
ThemeManager 1.1.7
TinyMCE 2.9.12
Gallery 1.6.1
CGExtensions 1.31.4
FormBuilder 0.7.3
Captcha 0.4.6
CGSmartImage 1.10.1
CGSimpleSmarty 1.5.2
CGGoogleMaps 2.4.5
GoogleMaps 0.2.1
PHP (phpversion) 5.3.21
CMSMailer 5.2.1
CMSPrinting 1.0.3
FileManager 1.4.1
MenuManager 1.8.4
MicroTiny 1.2.3
ModuleManager 1.5.5
News 2.12.9
Search 1.7.7
ThemeManager 1.1.7
TinyMCE 2.9.12
Gallery 1.6.1
CGExtensions 1.31.4
FormBuilder 0.7.3
Captcha 0.4.6
CGSmartImage 1.10.1
CGSimpleSmarty 1.5.2
CGGoogleMaps 2.4.5
GoogleMaps 0.2.1
Re: Text gallery tree
On my Testsite it shows the full hierarchy.
I call the gallerytree with the root gallery, like that:
Code: Select all
{Gallery dir='vehicles' action="gallerytree"}
Aside from that, you have a lot of nested <strong> outside of any <li> Tag.
Re: Text gallery tree
This shows hierarchy, but with active thumbnails. I need to show only text hierarchy (like simple menu).klenkes wrote: I call the gallerytree with the root gallery, like that:Code: Select all
{Gallery dir='vehicles' action="gallerytree"}
CMS Made Simple™ 1.11.2 "Isabela"
PHP (phpversion) 5.3.21
CMSMailer 5.2.1
CMSPrinting 1.0.3
FileManager 1.4.1
MenuManager 1.8.4
MicroTiny 1.2.3
ModuleManager 1.5.5
News 2.12.9
Search 1.7.7
ThemeManager 1.1.7
TinyMCE 2.9.12
Gallery 1.6.1
CGExtensions 1.31.4
FormBuilder 0.7.3
Captcha 0.4.6
CGSmartImage 1.10.1
CGSimpleSmarty 1.5.2
CGGoogleMaps 2.4.5
GoogleMaps 0.2.1
PHP (phpversion) 5.3.21
CMSMailer 5.2.1
CMSPrinting 1.0.3
FileManager 1.4.1
MenuManager 1.8.4
MicroTiny 1.2.3
ModuleManager 1.5.5
News 2.12.9
Search 1.7.7
ThemeManager 1.1.7
TinyMCE 2.9.12
Gallery 1.6.1
CGExtensions 1.31.4
FormBuilder 0.7.3
Captcha 0.4.6
CGSmartImage 1.10.1
CGSimpleSmarty 1.5.2
CGGoogleMaps 2.4.5
GoogleMaps 0.2.1