View file aiv2 AutoIndex/panel/upload.php

File size: 1.05Kb
<?php
include ('../config.php');
$page='upload';
include ('session.php');
include ($config->real() . $config->header);
?>
<?php
if($layout=='web'){?>
<div class="wrap">
<div style="float: left; width: 18%; margin-bottom: 5px;" class="container">
<?php include('sidebar.php'); ?>
</div>
<div style="float: right; width:80%;">
<?php
}?>
<div class="container"><div class="title">Upload</div>
<?php if($layout=='web'){
echo '<div style="padding:5px;">';
}
$i=1;
$methods=array('upload.standard.php'=>'Standard Upload',
'upload.url.php'=>'Url Upload',
'upload.folder.php'=>'Folder Uploader');
foreach($methods as $file=>$name):
if($layout=='mob')
$css=($i % 2==0)? 'Mainlight':'Mainwhite';
else
$css='item';
?>
<div class="<?php echo $css; ?>"><img src="<?php echo $config->installdir; ?>/customization/item.png" /> <strong><a href="<?php echo $file; ?>"><?php echo $name; ?></a></strong></div>
<?php $i++; endforeach; ?>
</div>
<?php if($layout=='web'){
echo '</div></div></div>';
}
?>
<?php
include ($config->real() . $config->footer); ?>