Blame view

sources/apps/files/ajax/rawlist.php 616 Bytes
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <?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\Filesystem::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));