aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/rawlist.php
blob: 8f1990d1b8ff694a4bbb87123bacc03e4094bd21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

// only need filesystem apps
$RUNTIME_APPTYPES=array('filesystem');

// Init owncloud

require_once('../../lib/template.php');

OC_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"] = OC_Util::formatDate($i["mtime"] );
  $i['mimetype_icon'] = $i['type'] == 'dir' ? mimetype_icon('dir'): mimetype_icon($i['mimetype']);
	$files[] = $i;
}

OC_JSON::success(array('data' => $files));

?>