Files
fdn2/private/lib/media/MediaRendererInterface.php
T
2016-03-04 12:26:30 +01:00

27 lines
472 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_H = 800;
const SIZE_BIG_W = 600;
const SIZE_ORIGINAL = 4;
const SIZE_ORIGINAL_H = null;
const SIZE_ORIGINAL_W = null;
public function asText(array $opt = array()) ;
public function render(array $opt = array());
}
?>