mirror of
https://github.com/Studio-42/elFinder
synced 2026-06-08 12:37:09 +00:00
92 lines
3.0 KiB
HTML
92 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>elFinder 2.1.x source version with PHP connector</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2" />
|
|
|
|
<!-- Section CSS -->
|
|
<!-- jQuery UI (REQUIRED) -->
|
|
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
|
|
|
|
<!-- elFinder CSS (REQUIRED) -->
|
|
<link rel="stylesheet" type="text/css" href="css/elfinder.min.css">
|
|
<link rel="stylesheet" type="text/css" href="css/theme.css">
|
|
|
|
<!-- Section JavaScript -->
|
|
<!-- jQuery and jQuery UI (REQUIRED) -->
|
|
<!--[if lt IE 9]>
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
|
|
<![endif]-->
|
|
<!--[if gte IE 9]><!-->
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
|
<!--<![endif]-->
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
|
|
|
|
<!-- elFinder JS (REQUIRED) -->
|
|
<script src="js/elfinder.min.js"></script>
|
|
|
|
<!-- Extra contents editors (OPTIONAL) -->
|
|
<script src="js/extras/editors.default.js"></script>
|
|
|
|
<!-- GoogleDocs Quicklook plugin for GoogleDrive Volume (OPTIONAL) -->
|
|
<!--<script src="js/extras/quicklook.googledocs.js"></script>-->
|
|
|
|
<!-- elFinder initialization (REQUIRED) -->
|
|
<script type="text/javascript" charset="utf-8">
|
|
// Documentation for client options:
|
|
// https://github.com/Studio-42/elFinder/wiki/Client-configuration-options
|
|
$(document).ready(function() {
|
|
$('#elfinder').elfinder(
|
|
// 1st Arg - options
|
|
{
|
|
cssAutoLoad : false, // Disable CSS auto loading
|
|
baseUrl : './', // Base URL to css/*, js/*
|
|
url : 'php/connector.minimal.php' // connector URL (REQUIRED)
|
|
// , lang: 'ru' // language (OPTIONAL)
|
|
},
|
|
// 2nd Arg - before boot up function
|
|
function(fm, extraObj) {
|
|
// `init` event callback function
|
|
fm.bind('init', function() {
|
|
// Optional for Japanese decoder "extras/encoding-japanese.min"
|
|
delete fm.options.rawStringDecoder;
|
|
if (fm.lang === 'jp') {
|
|
fm.loadScript(
|
|
[ fm.baseUrl + 'js/extras/encoding-japanese.min.js' ],
|
|
function() {
|
|
if (window.Encoding && Encoding.convert) {
|
|
fm.options.rawStringDecoder = function(s) {
|
|
return Encoding.convert(s,{to:'UNICODE',type:'string'});
|
|
};
|
|
}
|
|
},
|
|
{ loadType: 'tag' }
|
|
);
|
|
}
|
|
});
|
|
// Optional for set document.title dynamically.
|
|
var title = document.title;
|
|
fm.bind('open', function() {
|
|
var path = '',
|
|
cwd = fm.cwd();
|
|
if (cwd) {
|
|
path = fm.path(cwd.hash) || null;
|
|
}
|
|
document.title = path? path + ':' + title : title;
|
|
}).bind('destroy', function() {
|
|
document.title = title;
|
|
});
|
|
}
|
|
);
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Element where elFinder will be created (REQUIRED) -->
|
|
<div id="elfinder"></div>
|
|
|
|
</body>
|
|
</html>
|