mirror of
https://github.com/monstra-cms/monstra.git
synced 2025-07-14 10:06:23 +02:00
115 lines
4.4 KiB
PHP
Executable File
115 lines
4.4 KiB
PHP
Executable File
<h2><?php echo __('Files', 'filesmanager'); ?></h2>
|
||
<br />
|
||
|
||
<!-- Filesmanager_upload_files -->
|
||
<?php
|
||
echo (
|
||
Form::open(null, array('enctype' => 'multipart/form-data')).
|
||
Form::hidden('csrf', Security::token())
|
||
);
|
||
?>
|
||
<div class="fileupload fileupload-new" data-provides="fileupload">
|
||
<span class="btn btn-small btn-file"><span class="fileupload-new"><?php echo __('Select file', 'filesmanager'); ?></span><span class="fileupload-exists"><?php echo __('Change', 'filesmanager'); ?></span><input type="file" name="file" /></span>
|
||
<span class="fileupload-preview"></span>
|
||
<a href="#" class="close fileupload-exists" data-dismiss="fileupload">×</a>
|
||
</div>
|
||
<?php
|
||
echo (
|
||
Form::submit('upload_file', __('Upload', 'filesmanager'), array('class' => 'btn')).
|
||
Form::close()
|
||
)
|
||
?>
|
||
<!-- /Filesmanager_upload_files -->
|
||
|
||
<!-- Filesmanger_path -->
|
||
<ul class="breadcrumb">
|
||
|
||
<?php
|
||
$path_parts = explode ('/',$path);
|
||
|
||
foreach ($path_parts as $key => $value) {
|
||
if ($path_parts[$key] == '') {
|
||
unset($path_parts[$key]);
|
||
}
|
||
}
|
||
|
||
$s = '';
|
||
|
||
foreach ($path_parts as $p) {
|
||
$s .= $p.'/';
|
||
if($p == $current[count($current)-2]) $active = ' class="active"'; else $active = '';
|
||
echo '<li'.$active.'><a href="index.php?id=filesmanager&path='.$s.'">'.$p.'</a> <span class="divider">/</span></li>';
|
||
}
|
||
?>
|
||
</ul>
|
||
<!-- /Filesmanger_path -->
|
||
|
||
<table class="table table-bordered">
|
||
<thead>
|
||
<tr>
|
||
<th><?php echo __('Name', 'filesmanager'); ?></th>
|
||
<th class="hidden-phone"><?php echo __('Extension', 'filesmanager'); ?></th>
|
||
<th class="hidden-phone"><?php echo __('Size', 'filesmanager'); ?></th>
|
||
<th></th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<?php if (isset($dir_list)) foreach ($dir_list as $dir) { ?>
|
||
<tr>
|
||
<td>
|
||
<b><?php echo Html::anchor($dir, 'index.php?id=filesmanager&path='.$path.$dir.'/'); ?></b>
|
||
</td>
|
||
<td>
|
||
|
||
</td>
|
||
<td>
|
||
<!-- Dir Size -->
|
||
</td>
|
||
<td>
|
||
<div class="pull-right">
|
||
<?php echo Html::anchor(__('Delete', 'filesmanager'),
|
||
'index.php?id=filesmanager&delete_dir='.$dir.'&path='.$path.'&token='.Security::token(),
|
||
array('class' => 'btn btn-small', 'onclick' => "return confirmDelete('".__('Delete directory: :dir', 'filesmanager', array(':dir' => $dir))."')"));
|
||
?>
|
||
<div>
|
||
</td>
|
||
</tr>
|
||
<?php } ?>
|
||
<?php if (isset($files_list)) foreach ($files_list as $file) { $ext = File::ext($file); ?>
|
||
<?php if ( ! in_array($ext, $forbidden_types)) { ?>
|
||
<tr>
|
||
<td<?php if (isset(File::$mime_types[$ext]) && preg_match('/image/', File::$mime_types[$ext])) echo ' class="image"'?>>
|
||
<?php if (isset(File::$mime_types[$ext]) && preg_match('/image/', File::$mime_types[$ext])) { ?>
|
||
<?php echo Html::anchor(File::name($file), '#', array('rel' => $site_url.'public/' . $path.$file));?>
|
||
<?php } else { ?>
|
||
<?php echo Html::anchor(File::name($file), $site_url.'public/' . $path.$file, array('target'=>'_blank'));?>
|
||
<?php } ?>
|
||
</td>
|
||
<td class="hidden-phone">
|
||
<?php echo $ext; ?>
|
||
</td>
|
||
<td class="hidden-phone">
|
||
<?php echo Number::byteFormat(filesize($files_path. DS .$file)); ?>
|
||
</td>
|
||
<td>
|
||
<div class="pull-right">
|
||
<?php echo Html::anchor(__('Delete', 'filesmanager'),
|
||
'index.php?id=filesmanager&delete_file='.$file.'&path='.$path.'&token='.Security::token(),
|
||
array('class' => 'btn btn-small', 'onclick' => "return confirmDelete('".__('Delete file: :file', 'filesmanager', array(':file' => $file))."')"));
|
||
?>
|
||
</div>
|
||
</td>
|
||
</tr>
|
||
<?php } } ?>
|
||
</tbody>
|
||
</table>
|
||
|
||
<div id="previewLightbox" class="lightbox hide fade" tabindex="-1" role="dialog" aria-hidden="true">
|
||
<div class='lightbox-header'>
|
||
<button type="button" class="close" data-dismiss="lightbox" aria-hidden="true">×</button>
|
||
</div>
|
||
<div class='lightbox-content'>
|
||
<img />
|
||
</div>
|
||
</div>
|