| [ Index ] |
PHP Cross Reference of Joomla 1.5.26 DE |
[Summary view] [Print] [Text view]
1 <?php // no direct access 2 defined('_JEXEC') or die('Restricted access'); 3 $cparams =& JComponentHelper::getParams('com_media'); 4 ?> 5 <?php if ($this->params->get('show_page_title', 1)) : ?> 6 <div class="componentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>"> 7 <?php echo $this->escape($this->params->get('page_title')); ?> 8 </div> 9 <?php endif; ?> 10 <table width="100%" cellpadding="0" cellspacing="0" border="0" align="center" class="contentpane<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>"> 11 <tr> 12 <td valign="top" class="contentdescription<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>" colspan="2"> 13 <?php if ($this->category->image) : ?> 14 <img src="<?php echo $this->baseurl . '/' . $cparams->get('image_path') . '/'. $this->category->image;?>" align="<?php echo $this->category->image_position;?>" hspace="6" alt="<?php echo $this->category->image;?>" /> 15 <?php endif; ?> 16 <?php echo $this->category->description; ?> 17 </td> 18 </tr> 19 <tr> 20 <td> 21 <?php 22 $this->items =& $this->getItems(); 23 echo $this->loadTemplate('items'); 24 ?> 25 26 <?php if ($this->access->canEdit || $this->access->canEditOwn) : 27 echo JHTML::_('icon.create', $this->category , $this->params, $this->access); 28 endif; ?> 29 </td> 30 </tr> 31 </table>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Mar 28 15:54:07 2012 | Cross-referenced by PHPXref 0.7.1 |