mirror of
https://github.com/nextcloud/server.git
synced 2026-02-11 06:44:09 -05:00
19 lines
344 B
PHP
19 lines
344 B
PHP
<?php
|
|
namespace OC\Preview;
|
|
|
|
abstract class Provider {
|
|
private $options;
|
|
|
|
public function __construct($options) {
|
|
$this->options=$options;
|
|
}
|
|
|
|
abstract public function getMimeType();
|
|
|
|
/**
|
|
* search for $query
|
|
* @param string $query
|
|
* @return
|
|
*/
|
|
abstract public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview);
|
|
}
|