Advertisement
Guest User

Untitled

a guest
Jul 27th, 2015
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.01 KB | None | 0 0
  1. <?php
  2. /**
  3.  * @package     Joomla.Site
  4.  * @subpackage  Layout
  5.  *
  6.  * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
  7.  * @license     GNU General Public License version 2 or later; see LICENSE.txt
  8.  */
  9.  
  10. defined('_JEXEC') or die;
  11. $params  = $displayData->params;
  12.  
  13. $urls = json_decode($displayData->urls);
  14.  
  15. $urlarray = array(
  16.     array($urls->urla)
  17. );
  18. ?>
  19. <?php $images = json_decode($displayData->images); ?>
  20. <?php if (isset($images->image_intro) && !empty($images->image_intro)) : ?>
  21.     <?php $imgfloat = (empty($images->float_intro)) ? $params->get('float_intro') : $images->float_intro; ?>
  22.     <div class="pull-<?php echo htmlspecialchars($imgfloat); ?> item-image">
  23.     <?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
  24.     <?php if (!empty($urlarray[0][0])) : ?>
  25.         <a href="<?php echo $urlarray[0][0]; ?>"><img
  26.         <?php if ($images->image_intro_caption):
  27.             echo 'class="caption"' . ' title="' . htmlspecialchars($images->image_intro_caption) . '"';
  28.         endif; ?>
  29.         src="<?php echo htmlspecialchars($images->image_intro); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>" itemprop="thumbnailUrl"/></a>
  30.     <?php else : ?>
  31.         <a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($displayData->slug, $displayData->catid, $displayData->language)); ?>"><img
  32.         <?php if ($images->image_intro_caption):
  33.             echo 'class="caption"' . ' title="' . htmlspecialchars($images->image_intro_caption) . '"';
  34.         endif; ?>
  35.         src="<?php echo htmlspecialchars($images->image_intro); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>" itemprop="thumbnailUrl"/></a>
  36.     <?php endif; ?>
  37.     <?php else : ?><img
  38.     <?php if ($images->image_intro_caption):
  39.         echo 'class="caption"' . ' title="' . htmlspecialchars($images->image_intro_caption) . '"';
  40.     endif; ?>
  41.     src="<?php echo htmlspecialchars($images->image_intro); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>" itemprop="thumbnailUrl"/>
  42.     <?php endif; ?>    
  43. </div>
  44. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement