Date: 2009-07-12 07:41 Posted By: René Helminsen (reneh) version 0.9.0+ have dependencies: * Thumbnails => 0.1.1 * NeoDataStorage => 0.1.0 * NeoModule => 0.1.0
A new gallery module designed from the ground up to use solely *box-systems and relying on FileManager/ImageManager modules for file handling. Dependency: Thumbnails module.
Comments
Date: 2010-03-13 12:54 Posted By: Cherry (Cherry_) Hallo, I like NeoGallery a lot . Recently I tried to add some text to the photo-overview like xxx photos of xxx. Or page 1 of 4 or so. So far I've written the words directly into the template, but I'm wondering if there is a way to use the language file. I'ld like to have something like lang->('xxxx') in my template but can't figure out how. Is there a way? Thanks in advance Cherry
Date: 2010-03-15 03:40 Posted By: Cherry (Cherry_) ok... I'd like to contribute my page navigation as far as it is. Maybe someone finds it useful: Insert between <!-- * BODY * --> and <div class="NeoGallery clear"> ~~~~~~~~~snip ~~~~~~~~~~~ Diese Galerie enthält <strong>{$imagecount}</strong> Bilder <br /> {if $lastpage>1} <div class="NeoGallery"> Seite {$currentpage} von {$lastpage} <br /> <!-- navigation --> {if $currentpage == 1} {else} <strong><a title="zur ersten Seite" href="{$firstpageurl}"><<</a></strong> <strong><a title="zur vorigen Seite" href="{$previouspageurl}"><</a></strong> {/if} {if $currentpage == $lastpage} {else} <strong><a title="zur nächsten Seite" href="{$nextpageurl}">></a></strong> <strong><a title="zur letzten Seite" href="{$lastpageurl}">>></a></strong> {/if} </div> <br/> {/if} ~~~~~~~~snip ~~~~~~~~~~ Then it'll only display forward and backward links when necessary and add some mouse-over text. Furthermore it lets you know the total amount of pictures and which page of the gallery you're currently on (like page 2 of 5 or so). Sorry ... only German text in it. Didn't find a way to use language file :-(
Date: 2010-03-15 04:08 Posted By: Cherry (Cherry_) Maybe someone finds my version of style definitions useful: <style type="text/css" > .clear:after {content: "."; display: block; height: 0; clear: both; visibility: hidden; } * html .clear {height: 1%;} .clear {display: block;} img.greyboximage { border:1px solid #d5d5d5; background-color: white; padding: 3px; } .greyboximagediv { width:100px; height:100px; margin:5px; float:left; text-align:center; } .NeoGallery{ text-align:center; } .NeoGallery a{ cursor:pointer; } </style>