[ Index ]

PHP Cross Reference of Joomla 1.5.26 DE

title

Body

[close]

/templates/beez/html/com_newsfeeds/category/ -> default.php (source)

   1  <?php // @version $Id: default.php 11917 2009-05-29 19:37:05Z ian $
   2  defined('_JEXEC') or die('Restricted access');
   3  $cparams = JComponentHelper::getParams ('com_media');
   4  ?>
   5  
   6  <?php if ( $this->params->get( 'show_page_title',1)): ?>
   7  <h1 class="componentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
   8      <?php echo $this->escape($this->params->get('page_title')); ?>
   9  </h1>
  10  <?php endif; ?>
  11  
  12  <div class="newsfeed<?php echo $this->escape($this->params->get( 'pageclass_sfx' )); ?>">
  13      <?php if ( $this->category->image || $this->category->description ) : ?>
  14      <div class="contentdescription<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
  15  
  16          <?php if ( $this->category->image ) : ?>
  17          <img src="<?php echo $this->baseurl . '/' . $cparams->get('image_path').'/'.$this->category->image; ?>" class="image_<?php echo $this->category->image_position; ?>" />
  18          <?php endif; ?>
  19  
  20          <?php if ( $this->params->get( 'description' ) ) :
  21              echo $this->category->description;
  22          endif; ?>
  23  
  24          <?php if ( $this->category->image ) : ?>
  25          <div class="wrap_image">&nbsp;</div>
  26          <?php endif; ?>
  27  
  28      </div>
  29      <?php endif; ?>
  30  
  31      <?php echo $this->loadTemplate('items'); ?>
  32  </div>


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