27 lines
616 B
PHP
Executable File
27 lines
616 B
PHP
Executable File
<?php
|
|
|
|
// only need filesystem apps
|
|
$RUNTIME_APPTYPES=array('filesystem');
|
|
|
|
// Init owncloud
|
|
|
|
require_once('lib/template.php');
|
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
// Load the files
|
|
$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
|
|
$mimetype = isset($_GET['mimetype']) ? $_GET['mimetype'] : '';
|
|
|
|
// make filelist
|
|
$files = array();
|
|
foreach( OC_Files::getdirectorycontent( $dir, $mimetype ) as $i ){
|
|
$i["date"] = OCP\Util::formatDate($i["mtime"] );
|
|
$i['mimetype_icon'] = $i['type'] == 'dir' ? OCP\mimetype_icon('dir'): OCP\mimetype_icon($i['mimetype']);
|
|
$files[] = $i;
|
|
}
|
|
|
|
OCP\JSON::success(array('data' => $files));
|
|
|
|
?>
|