Subversion Repositories eFlore/Applications.cel

Rev

Rev 2461 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2461 Rev 2836
Line 16... Line 16...
16
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
16
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
17
 */
17
 */
18
class CelImageFormat {
18
class CelImageFormat {
Line 19... Line 19...
19
 
19
 
-
 
20
	private $config;
20
	private $config;
21
	// @TODO tirer ça de la config
21
	private $formats = array('CRX2S', 'CRXS', 'CXS', 'CS', 'CRS', 'XS', 'S', 'M', 'L', 'XL', 'X2L', 'X3L', 'O');
22
	private $formats = array('CRX2S', 'CRXS', 'CXS', 'CS', 'CRS', 'XS', 'S', 'M', 'L', 'CRL', 'XL', 'X2L', 'X3L', 'O');
22
	const METHODE_TELECHARGEMENT = 'telecharger';
23
	const METHODE_TELECHARGEMENT = 'telecharger';
Line 23... Line 24...
23
	const METHODE_AFFICHAGE = 'afficher';
24
	const METHODE_AFFICHAGE = 'afficher';
24
 
25