[ Index ]

PHP Cross Reference of Joomla 1.5.26 DE

title

Body

[close]

/administrator/components/com_media/views/imageslist/tmpl/ -> default.php (source)

   1  <?php defined('_JEXEC') or die('Restricted access'); ?>
   2  <?php if (count($this->images) > 0 || count($this->folders) > 0) { ?>
   3  <div class="manager">
   4  
   5          <?php for ($i=0,$n=count($this->folders); $i<$n; $i++) :
   6              $this->setFolder($i);
   7              echo $this->loadTemplate('folder');
   8          endfor; ?>
   9  
  10          <?php for ($i=0,$n=count($this->images); $i<$n; $i++) :
  11              $this->setImage($i);
  12              echo $this->loadTemplate('image');
  13          endfor; ?>
  14  
  15  </div>
  16  <?php } else { ?>
  17  <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
  18  <tr>
  19      <td>
  20          <div align="center" style="font-size:large;font-weight:bold;color:#CCCCCC;font-family: Helvetica, sans-serif;">
  21              <?php echo JText::_( 'No Images Found' ); ?>
  22          </div>
  23      </td>
  24  </tr>
  25  </table>
  26  <?php } ?>


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