Author
|
Message
|
Mark Gerrits
|
Tuesday 15 April 2003 2:37:47 am
Hi all, On the ezwiki site, there's a patch for RC2 for a sort of random template function. The file is not available anymore, so is this already in 3.0.1 ? I want to display a random product on my frontpage. How can I accomplish this ? I already have a fetch function which pulls out one product, but it's always the same (read: the first). Can someone help me out here ?
Thanks, Mark
|
Jan Borsodi
|
Tuesday 15 April 2003 4:23:06 am
There's no template operator for random numbers in eZ publish 3.0. If anyone feel up to it they could make it and upload it to contributions, it shouldn't be too hard to make.
The key here is to use the rand function in php http://www.php.net/manual/en/function.rand.php
--
Amos
Documentation: http://ez.no/ez_publish/documentation
FAQ: http://ez.no/ez_publish/documentation/faq
|
Mads Buus Jensen
|
Thursday 14 August 2003 2:41:40 am
Just use PHP's shuffle function on your array.
Create a template operator, and call shuffle($operatorValue);
now you can
{section loop=fetch(...)|shuffle}
...
{/section} in your templates
|
Pierre Bastoul
|
Friday 05 September 2003 3:12:51 am
I have made a template rand operator that use PHP rand function as suggest Jan. You put {rand(0,5)} in your template and you get a random integer between 0 and 5. It's my first extension, and it works ! Should I upload in contributions ?
|
PaoloMellerio kk
|
Monday 03 November 2003 4:29:54 am
Yes, Upload it Thanks
Paolo Mellerio
http://www.clikka.com
|
Tim Ross
|
Thursday 04 December 2003 7:06:59 am
I have created the shuffle operator and uploaded it to the contributions folder. it can be found here: http://ez.no/developer/ez_publish_3/contributions/random_sort_array_or_fetch_shuffle_operator I don't know if you ever uploaded your version, but I couldn't find it, so I uploaded this one, to help other people out. Tim
|