Files
@ 872091eca53c
Branch filter:
Location: hot67beta/administrator/components/com_media/views/medialist/tmpl/thumbs.php - annotation
872091eca53c
898 B
text/x-php
init header with no marg
c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 | <?php defined('_JEXEC') or die('Restricted access'); ?>
<form action="index.php?option=com_media&tmpl=component&folder=<?php echo $this->state->folder; ?>" method="post" id="mediamanager-form" name="mediamanager-form">
<div class="manager">
<?php echo $this->loadTemplate('up'); ?>
<?php for ($i=0,$n=count($this->folders); $i<$n; $i++) :
$this->setFolder($i);
echo $this->loadTemplate('folder');
endfor; ?>
<?php for ($i=0,$n=count($this->documents); $i<$n; $i++) :
$this->setDoc($i);
echo $this->loadTemplate('doc');
endfor; ?>
<?php for ($i=0,$n=count($this->images); $i<$n; $i++) :
$this->setImage($i);
echo $this->loadTemplate('img');
endfor; ?>
</div>
<input type="hidden" name="task" value="" />
<input type="hidden" name="username" value="" />
<input type="hidden" name="password" value="" />
<?php echo JHTML::_( 'form.token' ); ?>
</form>
|