Merge pull request #2445 from owncloud/extend_public_api

add a searchbymime to the public api. Please all remember that access to...
remotes/origin/stable6
Thomas Müller 14 years ago
commit a0ae2ab11a
  1. 10
      lib/public/files.php

@ -55,6 +55,16 @@ class Files {
return(\OC_Helper::getMimeType( $path ));
}
/**
* search for files by mimetype
*
* @param string $query
* @return array
*/
public function searchByMime($mimetype) {
return(\OC\Files\Filesystem::searchByMime( $mimetype ));
}
/**
* copy the contents of one stream to another
* @param resource source

Loading…
Cancel
Save