File "ajax_get_folder_listing.php"
Full Path: /home/asmplong/www/asm/js/jscripts/tiny_mce/plugins/ajaxfilemanager/ajax_get_folder_listing.php
File size: 287 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc" . DIRECTORY_SEPARATOR . "config.php");
echo '{';
$count = 1;
foreach(getFolderListing(CONFIG_SYS_ROOT_PATH) as $k=>$v)
{
echo (($count > 1)?', ':''). "'" . $v . "':'" . $k . "'";
$count++;
}
echo "}";
?>