| Server IP : 46.105.57.169 / Your IP : 216.73.216.144 Web Server : Apache System : Linux webd003.cluster120.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : maitricfuz ( 93378) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maitricfuz/www/saint-martin-lg/administrator/components/com_maximenuck/controllers/ |
Upload File : |
<?php
// No direct access
defined('_JEXEC') or die;
use Maximenuck\CKController;
use Maximenuck\CKFof;
use Maximenuck\CKText;
class MaximenuckControllerBrowse extends CKController {
public static function ajaxCreateFolder() {
// security check
CKFof::checkAjaxToken(false);
if (CKFof::userCan('create', 'com_media')) {
$input = CKFof::getInput();
$path = $input->get('path', '', 'string');
$name = $input->get('name', '', 'string');
require_once MAXIMENUCK_PATH . '/helpers/ckbrowse.php';
if ($result = CKBrowse::createFolder($path, $name)) {
$msg = CKText::_('CK_FOLDER_CREATED_SUCCESS');
} else {
$msg = CKText::_('CK_FOLDER_CREATED_ERROR');
}
echo '{"status" : "' . ($result == false ? '0' : '1') . '", "message" : "' . $msg . '"}';
} else {
echo '{"status" : "2", "message" : "' . CKText::_('CK_ERROR_USER_NO_AUTH') . '"}';
}
exit;
}
/**
* Get the file and store it on the server
*
* @return mixed, the method return
*/
public function ajaxAddPicture() {
// security check
CKFof::checkAjaxToken(false);
require_once MAXIMENUCK_PATH . '/helpers/ckbrowse.php';
CKBrowse::ajaxAddPicture();
}
}