/home/aqcert/public_html/admin/tinymce/js/tinymce/plugins/filemanager
NameSizeModeActions
css/-0755rm
ico/-0755rm
images/-0755rm
img/-0755rm
js/-0755rm
lang/-0755rm
config.php22500644editdlrm
create_folder.php3270644editdlrm
delete_file.php3290644editdlrm
delete_folder.php3350644editdlrm
dialog.php165040644editdlrm
force_download.php4920644editdlrm
php_image_magician.php1042000644editdlrm
plugin.min.js10010644editdlrm
upload.php23100644editdlrm
utils.php13150644editdlrm
Edit: /home/aqcert/public_html/admin/tinymce/js/tinymce/plugins/filemanager/utils.php (1315B)
resizeImage($newwidth, $newheight, 'crop'); // *** Save resized image as a PNG $magicianObj -> saveImage($imgthumb); } function makeSize($size) { $units = array('B','KB','MB','GB','TB'); $u = 0; while ( (round($size / 1024) > 0) && ($u < 4) ) { $size = $size / 1024; $u++; } return (number_format($size, 1, ',', '') . " " . $units[$u]); } function create_folder($path=false,$path_thumbs=false){ $oldumask = umask(0); if ($path && !file_exists($path)) mkdir($path, 0777); // or even 01777 so you get the sticky bit set if($path_thumbs && !file_exists($path_thumbs)) mkdir($path_thumbs, 0777); // or even 01777 so you get the sticky bit set umask($oldumask); } ?>