![]() |
|
Search Page Image Album - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: Search Page Image Album (/thread-10324.html) |
Search Page Image Album - joshrodgers - 21-08-2012 I created a search page that searches for images throughout Zenphoto...everything works great except for one thing: In my while I am trying to display which album an image is from...example: searching for "Blue" might return a picture of a crayon, underneath the picture it would read "Album: School Supplies". My while is next_image, which is why my current code isn't working: echo getAlbumTitle()...I'm thinking because it needs to be in next_album while instead, but you cannot put a while inside a while (or at least I don't know how to)...so I'm stuck. Any ideas? Search Page Image Album - acrylian - 21-08-2012 You have to use the object model, specifially the album class. Please see the tutorial. Search Page Image Album - joshrodgers - 21-08-2012 acrylian, I looked through the tutorial, but I'm not sure how to use the global variables...I tried which states that it returns the album title, but it didn't work Thanks, Search Page Image Album - acrylian - 21-08-2012 Sorry, you have to first get the album object of the current image in the loop via the image class and then you have to use the album class. Within search the current album is only set within the next_album loop. Search Page Image Album - joshrodgers - 21-08-2012 acrylian, Sorry man, just not sure what to do here...I tried: Search Page Image Album - sbillard - 22-08-2012 Guess you will have to learn. For starters look at the constructors for the album and image objects. They require parameters quite different from what you have placed in your code above.
Sorry, but if you are going to step into the world of customizing your Zenphoto gallery there is no shortcut to learning about its structure and object model. Search Page Image Album - joshrodgers - 22-08-2012 sbillard, Ok...so, I went and looked at the Thank you acrylian and sbillard!!! Josh Search Page Image Album - acrylian - 22-08-2012 Yep, that's it. Search Page Image Album - joshrodgers - 22-08-2012 acrylian, Cool, made the change...works like a champ!! Thanks again!! |