forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 plugins => Topic started by: Arnaud01 on August 30, 2015, 07:21:08 pm

Title: How to display thumbnails of an album
Post by: Arnaud01 on August 30, 2015, 07:21:08 pm
Hello,
I would like to display thumbnails of one album of my gallery on my website.
Is it possible ?

I already use cpm fetch to display thumbnails of the last pictures added.

Thanks,
Arnaud

Title: Re: How to display thumbnails of an album
Post by: gmc on August 30, 2015, 09:50:53 pm
And the answer is: cpmfetch...
There are many options to filter media - such as:
getLastAddedMediaFrom... any of the cpmfetch functions ending in 'From' accept a source parameter that allow you to filter.
The source can be any or all of: cat, album, owner, keyword, or text.

Examples:
"cat=5,6" - Use photos from categories 5 or 6
"cat=5,6:album=10" - Use photos from categories 5 or 6 or album 10.

So to view random media from a single category:  $objCpm->cpm_viewRandomMediaFrom("cat=1",1, 4, $options);

See the cpmfetch doc for more examples (folder docs supplied with cpmfetch) or view here: http://greggallery.gmcdesign.com/cpmfetch/docs/basic (http://greggallery.gmcdesign.com/cpmfetch/docs/basic)

Classes: Class cpm lists all the possibilities
The tutorial gives some examples.