25 lines
604 B
PHP
25 lines
604 B
PHP
<?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' ? \mimetype_icon('dir'): \mimetype_icon($i['mimetype']);
|
|
$files[] = $i;
|
|
}
|
|
|
|
OCP\JSON::success(array('data' => $files));
|