b0y-101 Mini Shell


Current Path : E:/www/instructor/teacher19/components/com_eventgallery/library/Configuration/
File Upload :
Current File : E:/www/instructor/teacher19/components/com_eventgallery/library/Configuration/EventPageable.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 EventPageable extends Configuration
{
    public function getThumbnailHeight() {
        return (int)$this->get('event_default_list_thumbnail_height', 250);
    }

    public function getThumbnailJitter() {
        return (int)$this->get('event_default_list_thumbnail_jitter', 50);
    }

    public function getFirstItemRowHeight() {
        return (int)$this->get('event_default_list_thumbnail_first_item_height', 2);
    }

    public function doShowImageHits() {
        return (int)$this->get('show_singlepage_imagehits', 1) == 1;
    }

    public function doShowImageCaptionOverlay() {
        return $this->get('show_default_image_caption_overlay', 0) == 1;
    }

}


Copyright © 2019 by b0y-101