1: <?php
2:
3: /**
4: * Pry Framework
5: *
6: * LICENSE
7: *
8: * This source file is subject to the new BSD license that is bundled
9: * with this package in the file LICENSE.txt.
10: *
11: */
12:
13: namespace Pry\Form;
14:
15: /**
16: *
17: * @category Pry
18: * @package Form
19: * @abstract
20: * @version 1.0.0
21: * @author Olivier ROGER <oroger.fr>
22: *
23: *
24: */
25: abstract class Error
26: {
27:
28: const REQUIRED = 'Ce champs doit être rempli';
29: const TOOSHORT = 'Contenu trop court, au moins :';
30: const TOOLONG = 'Contenu trop long, limite de :';
31: const NOTIP = 'Veuillez saisir une IP valide';
32: const NOTMAC = 'Veuillez saisir une adresse MAC valide';
33: const NOTDATE = 'Veuillez saisir une date valide';
34: const TOOBIG = 'Le poids du fichier est trop élevé';
35: const EXT = 'Extension de fichier non autorisée';
36: const UPLOAD = 'L\'envoi semble avoir échoué';
37: const MAIL = 'Adresse email invalide';
38: const COLOR = 'Format de couleur inconnu';
39: const NUMERIC = 'Ce champs requiert un format numérique';
40:
41: }
42:
43: ?>