server/lib/preview/unknown.php

27 lines
683 B
PHP
Raw Normal View History

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