| Current Path : /home/megadansyp/www/components/com_eventgallery/library/Configuration/ |
| Current File : /home/megadansyp/www/components/com_eventgallery/library/Configuration/EventImagelist.php |
<?php
namespace Joomla\Component\Eventgallery\Site\Library\Configuration;
/**
* @package Sven.Bluege
* @subpackage com_eventgallery
*
* @copyright Copyright (C) 2005 - 2019 Sven Bluege All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
class EventImagelist extends Configuration
{
public function getThumbnailHeight() {
return (int)$this->get('event_image_list_thumbnail_height', 250);
}
public function getThumbnailJitter() {
return (int)$this->get('event_image_list_thumbnail_jitter', 50);
}
public function getFirstItemRowHeight() {
return (int)$this->get('event_image_list_thumbnail_first_item_height', 2);
}
public function doShowImageCaptionOverlay() {
return $this->get('show_image_caption_overlay', 0) == 1;
}
}