| [ Index ] |
PHP Cross Reference of Joomla 1.5.26 DE |
[Summary view] [Print] [Text view]
1 <?php defined('_JEXEC') or die('Restricted access'); ?> 2 <form action="index.php?option=com_media&tmpl=component&folder=<?php echo $this->state->folder; ?>" method="post" id="mediamanager-form" name="mediamanager-form"> 3 <div class="manager"> 4 <table width="100%" cellspacing="0"> 5 <thead> 6 <tr> 7 <th><?php echo JText::_( 'Preview' ); ?></th> 8 <th><?php echo JText::_( 'Name' ); ?></th> 9 <th><?php echo JText::_( 'Dimensions' ); ?></th> 10 <th><?php echo JText::_( 'Size' ); ?></th> 11 <th><?php echo JText::_( 'Delete' ); ?></th> 12 </tr> 13 </thead> 14 <tbody> 15 <?php echo $this->loadTemplate('up'); ?> 16 17 <?php for ($i=0,$n=count($this->folders); $i<$n; $i++) : 18 $this->setFolder($i); 19 echo $this->loadTemplate('folder'); 20 endfor; ?> 21 22 <?php for ($i=0,$n=count($this->documents); $i<$n; $i++) : 23 $this->setDoc($i); 24 echo $this->loadTemplate('doc'); 25 endfor; ?> 26 27 <?php for ($i=0,$n=count($this->images); $i<$n; $i++) : 28 $this->setImage($i); 29 echo $this->loadTemplate('img'); 30 endfor; ?> 31 32 </tbody> 33 </table> 34 </div> 35 <input type="hidden" name="task" value="list" /> 36 <input type="hidden" name="username" value="" /> 37 <input type="hidden" name="password" value="" /> 38 <?php echo JHTML::_( 'form.token' ); ?> 39 </form>
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 |