[ Index ]

PHP Cross Reference of Joomla 1.5.26 DE

title

Body

[close]

/templates/beez/html/mod_newsflash/ -> _item.php (source)

   1  <?php // @version $Id: _item.php 12349 2009-06-24 13:37:19Z ian $
   2  defined('_JEXEC') or die('Restricted access');
   3  ?>
   4  
   5  <?php if ($params->get('item_title')) : ?>
   6  <h4>
   7      <?php if ($params->get('link_titles') && (isset($item->linkOn))) : ?>
   8      <a href="<?php echo JRoute::_($item->linkOn); ?>" class="contentpagetitle<?php echo $params->get('moduleclass_sfx'); ?>">
   9          <?php echo $item->title; ?></a>
  10      <?php else :
  11          echo $item->title;
  12      endif; ?>
  13  </h4>
  14  <?php endif; ?>
  15  
  16  <?php if (!$params->get('intro_only')) :
  17      echo $item->afterDisplayTitle;
  18  endif; ?>
  19  
  20  <?php echo $item->beforeDisplayContent;
  21  echo JFilterOutput::ampReplace($item->text);
  22  
  23  $itemparams=new JParameter($item->attribs);
  24  $readmoretxt=$itemparams->get('readmore',JText::_('Read more text'));
  25  if (isset($item->linkOn) && $item->readmore && $params->get('readmore')) : ?>
  26  <a href="<?php echo $item->linkOn; ?>" class="readon">
  27      <?php echo $readmoretxt.' ' . $item->title; ?></a>
  28  <?php endif; ?>
  29  <span class="article_separator">&nbsp;</span>


Generated: Wed Mar 28 15:54:07 2012 Cross-referenced by PHPXref 0.7.1