Files
fdn2/app/private/lib/media/MediaRendererInterface.php
T
2022-08-29 23:20:16 +02:00

30 lines
544 B
PHP

<?php
interface MediaRendererInterface{
const SIZE_SMALL = 1;
const SIZE_SMALL_W = 160;
const SIZE_SMALL_H = 120;
const SIZE_MEDIUM = 2;
const SIZE_MEDIUM_W = 240;
const SIZE_MEDIUM_H = 205;
const SIZE_BIG = 3;
const SIZE_BIG_W = 500;
const SIZE_BIG_H = 375;
const SIZE_ORIGINAL = 4;
const SIZE_ORIGINAL_H = null;
const SIZE_ORIGINAL_W = null;
const SIZE_MINI = 5;
const SIZE_MINI_W = 80;
const SIZE_MINI_H = 60;
public function asText(array $opt = array()) ;
public function render(array $opt = array());
}
?>