12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2">
- <title>elFinder 2.1.x source version with PHP connector</title>
-
-
- <link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
-
- <link rel="stylesheet" type="text/css" href="css/elfinder.min.css">
- <link rel="stylesheet" type="text/css" href="css/theme.css">
-
-
-
-
- <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
-
- <script src="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
-
- <script src="js/elfinder.min.js"></script>
-
- <script src="js/extras/editors.default.min.js"></script>
-
-
-
- <script type="text/javascript" charset="utf-8">
-
-
- $(document).ready(function() {
- $('#elfinder').elfinder(
-
- {
- cssAutoLoad : false,
- baseUrl : './',
- url : 'php/connector.minimal.php'
-
- },
-
- function(fm, extraObj) {
-
- fm.bind('init', function() {
-
- if (fm.lang === 'ja') {
- fm.loadScript(
- [ '//cdn.rawgit.com/polygonplanet/encoding.js/1.0.26/encoding.min.js' ],
- function() {
- if (window.Encoding && Encoding.convert) {
- fm.registRawStringDecoder(function(s) {
- return Encoding.convert(s, {to:'UNICODE',type:'string'});
- });
- }
- },
- { loadType: 'tag' }
- );
- }
- });
-
- 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>
-
- <div id="elfinder"></div>
- </body>
- </html>
|