Responsive File Manager:
http://www.responsivefilemanager.com/index.php
Config.php:
1 2 3 4 5 6 7 8 9 |
// path from base_url to base of upload folder (with start and final /) $upload_dir = '/uploads/'; //Uploads not in root folder //$upload_dir = '/linda/mingzu/uploads/'; // relative path from filemanager folder to upload folder (with final /) $current_path = '../../../../uploads/'; //thumbs folder can't put inside upload folder //The same folder as "uploads". "thumbs" should be included in .htaccess file $thumbs_base_path = '../../../../thumbs/'; // relative path from filemanager folder to thumbs folder (with final /) |
Callback Function:
This function will be triggered after an image is selected. Added by Alberto on 2014/9/5
1 2 3 4 |
function responsive_filemanager_callback(field_id){ var $this = $('#' + field_id); console.log('callback'); } |