diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-14 00:39:12 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-14 00:39:12 +0200 |
commit | ffa115b51725c4774b49c2419f88cb91d726386b (patch) | |
tree | 22d35c12ad982b7688a87befd70274121d4db428 /apps/files/lib/helper.php | |
parent | e36c0a0c12ca92ec6e23617a93ff57296b3ea223 (diff) | |
parent | 59efcb63a334b70b3f392a4eea18c67e79ac4a21 (diff) | |
download | nextcloud-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.php | 5 |
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); } |