![]() |
|
manual rss-feed sorting for my flash-frontend - 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: manual rss-feed sorting for my flash-frontend (/thread-6708.html) |
manual rss-feed sorting for my flash-frontend - turbo_t - 2010-03-04 hello, first of all, i'm really impressed by what you all have created, zenphoto is great! i'm using it as a backend for my flash-portfolio (photographer) - i've simply modified the rss.xml a little to output a simpler xml file that flash can handle easy. cheers, manual rss-feed sorting for my flash-frontend - acrylian - 2010-03-04 Thanks! Well, the rss feeds are not setup for taking care of the sorting as they are for the latest entries. You would have create a customized rss feed using the object model framework to achieve this. You could also look at the efferescence+ theme that uses also the flash script simpleviewer for one of its personalities using an xml file if I am correct. manual rss-feed sorting for my flash-frontend - turbo_t - 2010-03-04 ok, i'll have a look at that theme. it's not possible to add a case for $sortorder in image_album_statistics.php for "manual", is it? manual rss-feed sorting for my flash-frontend - acrylian - 2010-03-04 Possible is everything, it's code, but "manual" does not make sense regarding statistics, don't you think? You can do everything you want with the object model framework but it will be a little work to do manual rss-feed sorting for my flash-frontend - turbo_t - 2010-03-04 i just found that the rss.php calls image_album_statistics.php for the sorting: so i thought there might already be an option i could use to get my manual sorting that i'm doing in the admininterface of zenphoto instead of "feed_sortorder", without having to get too deep in the code. it's too complicated for me, to get the efferescence+ theme to do what i want :/ manual rss-feed sorting for my flash-frontend - acrylian - 2010-03-04 [i]$result = getImageStatistic($items,getOption("feed_sortorder"),$albumfolder,$collection);[/i] As said the easiest and best is to use the object model framework to create a custom rss feed. |