mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
20 lines
361 B
PHP
20 lines
361 B
PHP
<?php
|
|
/**
|
|
* provides search functionalty
|
|
*/
|
|
abstract class OC_Preview_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);
|
|
}
|