Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. <?php
  2. /**
  3. * @version 4.0.1
  4. * @package Joomla
  5. * @subpackage Iproperty
  6. * @copyright (C) 2009 - 2017 the Thinkery LLC. All rights reserved.
  7. * @license see LICENSE.php
  8. */
  9.  
  10. // Check to ensure this file is included in Joomla!
  11. defined('_JEXEC') or die('Restricted access');
  12.  
  13. // Initialize variables
  14. $usethumb = $params->get('usethumb', 1);
  15. $uid = "slider".uniqid();
  16. ?>
  17.  
  18. <div class="jnilla-gallery slider" id="<?php echo $uid; ?>">
  19. <div class="slider-5 style2">
  20. <!-- Slider items -->
  21. <div class="gallery-items">
  22. <?php $n = -1; ?>
  23. <?php foreach ($items as $item) : ?>
  24. <?php $n++;
  25. $item->proplink = JRoute::_(IpropertyHelperRoute::getPropertyRoute($item->id . ':' . $item->alias, '', true));
  26. ?>
  27. <div class="gallery-item <?php if($n==0 || $n<=4) echo 'default'.$n; ?>">
  28. <a href="<?php echo $item->proplink; ?>">
  29. <?php echo IpropertyHelperHtml::getThumbnail($item->id, $item->proplink, $item->street_address, '', 'class="jn-gallery-thumb jn-holder img"', '', $usethumb); ?>
  30. <div class="carousel-caption">
  31. <h4><?php echo $item->title; ?></h4>
  32. </div>
  33. </a>
  34. </div>
  35. <?php endforeach; ?>
  36. </div>
  37. <div class="controls left" id="left-<?php echo $uid; ?>"><i class="icon-angle-left"></i></div>
  38. <div class="controls right" id="right-<?php echo $uid; ?>"><i class="icon-angle-right"></i></div>
  39. </div>
  40. </div>
  41. <div class="clearfix"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement