aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib/helper.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-04-14 00:39:12 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-04-14 00:39:12 +0200
commitffa115b51725c4774b49c2419f88cb91d726386b (patch)
tree22d35c12ad982b7688a87befd70274121d4db428 /apps/files/lib/helper.php
parente36c0a0c12ca92ec6e23617a93ff57296b3ea223 (diff)
parent59efcb63a334b70b3f392a4eea18c67e79ac4a21 (diff)
downloadnextcloud-server-ffa115b51725c4774b49c2419f88cb91d726386b.tar.gz
nextcloud-server-ffa115b51725c4774b49c2419f88cb91d726386b.zip
Merge pull request #15566 from owncloud/fix-filepicker
fix filepicker
Diffstat (limited to 'apps/files/lib/helper.php')
-rw-r--r--apps/files/lib/helper.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php
index cc1b2d3cfbe..e966e60d00a 100644
--- a/apps/files/lib/helper.php
+++ b/apps/files/lib/helper.php
@@ -196,10 +196,11 @@ class Helper {
* @param string $dir path to the directory
* @param string $sortAttribute attribute to sort on
* @param bool $sortDescending true for descending sort, false otherwise
+ * @param string $mimetypeFilter limit returned content to this mimetype or mimepart
* @return \OCP\Files\FileInfo[] files
*/
- public static function getFiles($dir, $sortAttribute = 'name', $sortDescending = false) {
- $content = \OC\Files\Filesystem::getDirectoryContent($dir);
+ public static function getFiles($dir, $sortAttribute = 'name', $sortDescending = false, $mimetypeFilter = '') {
+ $content = \OC\Files\Filesystem::getDirectoryContent($dir, $mimetypeFilter);
return self::sortFiles($content, $sortAttribute, $sortDescending);
}