| Server IP : 180.180.241.3 / Your IP : 216.73.216.216 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/news/administrator/components/com_phocagallery/views/phocagalleryi/tmpl/ |
Upload File : |
<?php defined('_JEXEC') or die('Restricted access'); ?>
<?php echo $this->loadTemplate('up'); ?>
<?php if (count($this->images) > 0 || count($this->folders) > 0) { ?>
<div>
<?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->images); $i<$n; $i++) :
$this->setImage($i);
echo $this->loadTemplate('image');
endfor; ?>
</div>
<?php } else { ?>
<div>
<center style="clear:both;font-size:large;font-weight:bold;color:#b3b3b3;font-family: Helvetica, sans-serif;">
<?php echo JText::_( 'There is no image folder' ); ?>
</center>
</div>
<?php } ?>
<div style="clear:both">
<div style="border-bottom:1px solid #cccccc;margin-bottom: 10px"> </div>
<?php
if ($this->tmpl['displaytabs'] > 0) {
echo '<div id="phocagallery-pane">';
$pane =& JPane::getInstance('Tabs', array('startOffset'=> $this->tmpl['tab']));
echo $pane->startPane( 'pane' );
echo $pane->startPanel( JHTML::_( 'image.site', 'components/com_phocagallery/assets/images/icon-16-upload.png','', '', '', '', '') . ' '.JText::_('Upload'), 'votes' );
echo $this->loadTemplate('upload');
echo $pane->endPanel();
if($this->tmpl['enablejavaadmin'] == 1) {
echo $pane->startPanel( JHTML::_( 'image.site', 'components/com_phocagallery/assets/images/icon-16-upload-java.png','', '', '', '', '') . ' '.JText::_('Java Upload'), 'votes' );
echo $this->loadTemplate('javaupload');
echo $pane->endPanel();
}
echo $pane->startPanel( JHTML::_( 'image.site', 'components/com_phocagallery/assets/images/icon-16-upload-flash.png','', '', '', '', '') . ' '.JText::_('Flash Upload'), 'votes' );
echo $this->loadTemplate('flashupload');
echo $pane->endPanel();
echo $pane->endPane();
echo '</div>';// end phocagallery-pane
}
?>