nextcloud/lib/preview/unknown.php

27 lines
683 B
PHP
Raw Normal View History

2013-04-25 06:51:44 -04:00
<?php
/**
* Copyright (c) 2013 Frank Karlitschek frank@owncloud.org
2013-05-17 06:00:32 -04:00
* Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
2013-04-25 06:51:44 -04:00
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2013-05-29 06:33:24 -04:00
namespace OC\Preview;
2013-05-29 07:11:43 -04:00
class Unknown extends Provider {
2013-04-25 06:51:44 -04:00
2013-05-29 07:03:33 -04:00
public function getMimeType() {
2013-04-25 06:51:44 -04:00
return '/.*/';
}
2013-05-29 07:03:33 -04:00
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
2013-06-12 10:18:16 -04:00
$mimetype = $fileview->getMimeType($path);
2013-08-15 07:20:31 -04:00
$path = \OC_Helper::mimetypeIcon($mimetype);
$path = \OC::$SERVERROOT . substr($path, strlen(\OC::$WEBROOT));
2013-06-12 10:18:16 -04:00
2013-08-15 07:20:31 -04:00
return new \OC_Image($path);
2013-05-17 13:08:16 -04:00
}
2013-04-25 06:51:44 -04:00
}
\OC\Preview::registerProvider('OC\Preview\Unknown');