Files
fdn2/private/lib/media/MediaRendererInterface.php
T
Lorenzo Giacomelli 0dcafb2d94 Aggiunto size mini per le immagini;
fix limit in articolo e searchResults;
inizio styling per immagini clickable;
inizio funzione immagini clickable
2016-03-18 14:19:55 +01:00

32 lines
548 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());
}
?>