b0y-101 Mini Shell


Current Path : E:/www/instructor/test02/components/com_speasyimagegallery/layouts/gallery/rectangle/
File Upload :
Current File : E:/www/instructor/test02/components/com_speasyimagegallery/layouts/gallery/rectangle/image.php

<?php
/**
* @package com_speasyimagegallery
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2021 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/


// No direct access
defined('_JEXEC') or die('Restricted access');

extract($displayData);

if($column == 1) {
  $sizes = array(
    array('x_thumb', 'speasyimagegallery-col-xs-12 speasyimagegallery-col-sm-8'),
    array('thumb', 'speasyimagegallery-col-xs-6 speasyimagegallery-col-sm-4'),
    array('thumb', 'speasyimagegallery-col-xs-6 speasyimagegallery-col-sm-4'),
  );
} else if($column == 2) {
  $sizes = array(
    array('x_thumb', 'speasyimagegallery-col-xs-12 speasyimagegallery-col-sm-8 speasyimagegallery-col-sm-push-4'),
    array('thumb', 'speasyimagegallery-col-xs-6 speasyimagegallery-col-sm-4 speasyimagegallery-col-sm-pull-8'),
    array('thumb', 'speasyimagegallery-col-xs-6 speasyimagegallery-col-sm-4 speasyimagegallery-col-sm-pull-8'),
  );
} else {
  $sizes = array(
    array('thumb', 'speasyimagegallery-col-xs-12 speasyimagegallery-col-sm-4'),
    array('thumb', 'speasyimagegallery-col-xs-6 speasyimagegallery-col-sm-4'),
    array('thumb', 'speasyimagegallery-col-xs-6 speasyimagegallery-col-sm-4'),
  );
}

$source = json_decode($image->images);
$thumb = $sizes[$index][0];
$col = $sizes[$index][1];
?>
<div class="<?php echo $col; ?>">
  <a class="speasyimagegallery-gallery-item" href="<?php echo $source->original; ?>" data-title="<?php echo $image->title; ?>" data-desc="<?php echo strip_tags($image->description); ?>">
    <div>
      <img src="<?php echo $source->$thumb; ?>" title="<?php echo $image->title; ?>" alt="<?php echo $image->alt; ?>">
      <div class="speasyimagegallery-gallery-item-content">
        <span class="speasyimagegallery-gallery-item-title"><?php echo $image->title; ?></span>
      </div>
    </div>
  </a>
</div>

Copyright © 2019 by b0y-101