[ Index ]

PHP Cross Reference of Joomla 1.5.26 DE

title

Body

[close]

/modules/mod_newsflash/tmpl/ -> _item.php (source)

   1  <?php // no direct access
   2  defined('_JEXEC') or die('Restricted access'); ?>
   3  <?php if ($params->get('item_title')) : ?>
   4  <table class="contentpaneopen<?php echo $params->get( 'moduleclass_sfx' ); ?>">
   5  <tr>
   6      <td class="contentheading<?php echo $params->get( 'moduleclass_sfx' ); ?>" width="100%">
   7      <?php if ($params->get('link_titles') && $item->linkOn != '') : ?>
   8          <a href="<?php echo $item->linkOn;?>" class="contentpagetitle<?php echo $params->get( 'moduleclass_sfx' ); ?>">
   9              <?php echo $item->title;?></a>
  10      <?php else : ?>
  11          <?php echo $item->title; ?>
  12      <?php endif; ?>
  13      </td>
  14  </tr>
  15  </table>
  16  <?php endif; ?>
  17  
  18  <?php if (!$params->get('intro_only')) :
  19      echo $item->afterDisplayTitle;
  20  endif; ?>
  21  
  22  <?php echo $item->beforeDisplayContent; ?>
  23  
  24  <table class="contentpaneopen<?php echo $params->get( 'moduleclass_sfx' ); ?>">
  25      <tr>
  26          <td valign="top" ><?php echo $item->text; ?></td>
  27      </tr>
  28      <tr>
  29          <td valign="top" >
  30  
  31         <?php if (isset($item->linkOn) && $item->readmore && $params->get('readmore')) :
  32            echo '<a class="readmore" href="'.$item->linkOn.'">'.$item->linkText.'</a>';
  33          endif; ?>
  34          </td>
  35       </tr>
  36  </table>


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