Text gallery tree

Have a question or a suggestion about a 3rd party addon module or plugin?
Let us know here.
Post Reply
aldomoro
Forum Members
Forum Members
Posts: 14
Joined: Wed Oct 17, 2012 7:50 am

Text gallery tree

Post by aldomoro »

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!
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
klenkes
Power Poster
Power Poster
Posts: 307
Joined: Mon Sep 08, 2008 9:43 am

Re: Text gallery tree

Post by klenkes »

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>
aldomoro
Forum Members
Forum Members
Posts: 14
Joined: Wed Oct 17, 2012 7:50 am

Re: Text gallery tree

Post by aldomoro »

Thank you, it works but only in basic level... :-(
http://www.linharti.cz/galerie
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
klenkes
Power Poster
Power Poster
Posts: 307
Joined: Mon Sep 08, 2008 9:43 am

Re: Text gallery tree

Post by klenkes »

aldomoro wrote:Thank you, it works but only in basic level... :-(
http://www.linharti.cz/galerie
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"}
Where "vehicles" is in gallery root, parallel to Gallery.

Aside from that, you have a lot of nested <strong> outside of any <li> Tag.
aldomoro
Forum Members
Forum Members
Posts: 14
Joined: Wed Oct 17, 2012 7:50 am

Re: Text gallery tree

Post by aldomoro »

klenkes wrote: I call the gallerytree with the root gallery, like that:

Code: Select all

{Gallery dir='vehicles' action="gallerytree"}
This shows hierarchy, but with active thumbnails. I need to show only text hierarchy (like simple menu).
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
Post Reply

Return to “Modules/Add-Ons”