Jump to content


vanderbreye

Member Since 28 Mar 2012
Offline Last Active Jun 05 2012 11:49 AM
-----

Posts I've Made

In Topic: Save Files in Amazon S3 / Cloud?

05 June 2012 - 06:54 AM

Ok, it is simple to implement the S3 directly in the core upload ;)

BUT: how should i begin to write the module, which binds on the uploadprocess?
It is important to have file+tmp name of all uploded files in it. is there a hook i can use?

a) hook in the uploadprocess and
c) give a global option where to place the files: local / AWS / or both.
B) hook in the output of the images+thumbs (based on options location)
d) hook in the backend thumbnail view to show (based on options location)

In Topic: Selectors with OR operators?

11 April 2012 - 07:18 AM

i have a similar problem: i want to get

-all items from a list if they match the ID
TOGETHER WITH
-all items wich are marked as global, regardeless of their ID


$search=  $pages->find("offer_global=1|offer_from='22|33|44|55");
wont work...

isnt there something like:
$search=  $pages->find("offer_global=1|(offer_from='22|33|44|55"));
?