diff options
author | Andrew Brown <andrew@casabrown.com> | 2014-02-17 17:57:27 -0800 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-06-05 19:23:44 +0200 |
commit | 7a224f57626f684415b5f45660bd21ec7ebafe72 (patch) | |
tree | a5acb119de2c963ce26ef2eed59b75a2bfa1660c /lib/private/search/result/folder.php | |
parent | 8a223eb62d9d0a1f92ce869ba2639816843cd1a6 (diff) | |
download | nextcloud-server-7a224f57626f684415b5f45660bd21ec7ebafe72.tar.gz nextcloud-server-7a224f57626f684415b5f45660bd21ec7ebafe72.zip |
Move new search results to 'lib/private/search'
Diffstat (limited to 'lib/private/search/result/folder.php')
-rw-r--r-- | lib/private/search/result/folder.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/private/search/result/folder.php b/lib/private/search/result/folder.php new file mode 100644 index 00000000000..8346f933b4d --- /dev/null +++ b/lib/private/search/result/folder.php @@ -0,0 +1,33 @@ +<?php +/** + * ownCloud + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OC\Search\Result; + +/** + * A found folder + */ +class Folder extends \OC\Search\Result\File { + + /** + * Type name; translated in templates + * @var string + */ + public $type = 'folder'; + +} |