| Current Path : /home/azimutno/www/demo/plugins/nextendslidergenerator/flickr/peoplephotogallery/ |
| Current File : /home/azimutno/www/demo/plugins/nextendslidergenerator/flickr/peoplephotogallery/generator.php |
<?php
/*
# author Roland Soos
# copyright Copyright (C) Nextendweb.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-3.0.txt GNU/GPL
*/
defined('_JEXEC') or die('Restricted access'); ?><?php
nextendimportsmartslider2('nextend.smartslider.generator_abstract');
class NextendGeneratorFlickr_Peoplephotogallery extends NextendGeneratorAbstract {
var $extraFields;
function NextendGeneratorFlickr_Peoplephotogallery($data) {
parent::__construct($data);
$this->_variables = array(
'id' => 'ID of the photo',
'title' => 'Title of the photo',
'description' => 'Description of the photo',
'owner_username' => 'Username of the photo\'s owner',
'owner_realname' => 'Real name of the photo\'s owner',
'owner_photosurl' => 'Photos url of the photo\'s owner',
'owner_profileurl' => 'Profile url of the photo\'s owner',
'url_sq' => 'Small square image (75*75)',
'url_t' => 'Thumbnail image (100 on longest side)',
'url_s' => 'Small image (240 on longest side)',
'url_q' => 'Large square image (150*150)',
'url_m' => 'Medium (500 on longest side)',
'url_n' => 'Small (320 on longest side)',
'url_z' => 'Medium (640 on longest side)',
'url_c' => 'Medium (800 on longest side)',
'url_l' => 'Large (1024 on longest side)',
'url_o' => 'Original image'
);
}
function getData($number) {
$data = array();
$photogallery = $this->_data->get('peoplephotogallery');
if ($photogallery) {
$api = getNextendFlickr();
if (!$api) return $data;
$result = $api->galleries_getPhotos($photogallery,
'description, date_upload, date_taken, owner_name, geo, tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_q, url_m, url_n, url_z, url_c, url_l, url_o',
$number
);
$people = array();
foreach ($result['photos']['photo'] AS $photo) {
if (!isset($people[$photo['ownername']])) {
$owner = $api->people_findByUsername($photo['ownername']);
$people[$photo['ownername']] = $api->people_getInfo($owner['nsid']);
}
$ow = $people[$photo['ownername']];
$photo['owner_username'] = $ow['username'];
$photo['owner_realname'] = isset($ow['realname']) ? $ow['realname'] : $ow['username'];
$photo['owner_photosurl'] = $ow['photosurl'];
$photo['owner_profileurl'] = $ow['profileurl'];
$data[] = $photo;
}
} else {
if (NextendSmartSliderSettings::get('debugmessages', 1))
echo 'Please choose a set for Flickr photoset generator!';
}
return $data;
}
}