nextcloud/apps/files/ajax/rawlist.php

25 lines
616 B
PHP
Raw Normal View History

2012-04-02 21:39:24 +04:00
<?php
// only need filesystem apps
$RUNTIME_APPTYPES=array('filesystem');
// Init owncloud
2012-08-29 02:50:12 +04:00
require_once 'lib/template.php';
2012-04-02 21:39:24 +04:00
2012-05-03 14:23:29 +04:00
OCP\JSON::checkLoggedIn();
2012-04-02 21:39:24 +04:00
// Load the files
$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
2012-08-29 10:42:49 +04:00
$mimetype = isset($_GET['mimetype']) ? $_GET['mimetype'] : '';
2012-04-02 21:39:24 +04:00
// make filelist
$files = array();
2012-10-27 01:05:02 +04:00
foreach( \OC\Files\Filesystem::getDirectoryContent( $dir, $mimetype ) as $i ) {
2012-05-01 23:07:08 +04:00
$i["date"] = OCP\Util::formatDate($i["mtime"] );
2012-08-29 02:50:12 +04:00
$i['mimetype_icon'] = $i['type'] == 'dir' ? \mimetype_icon('dir'): \mimetype_icon($i['mimetype']);
2012-04-02 21:39:24 +04:00
$files[] = $i;
}
2012-05-03 14:23:29 +04:00
OCP\JSON::success(array('data' => $files));