X-Git-Url: http://git.cyclocoop.org/?p=velocampus%2Fweb%2Fwww.git;a=blobdiff_plain;f=www%2Fplugins%2Fauto%2Fsaisies%2Fformulaires%2Fsaisies_cvt.php;fp=www%2Fplugins%2Fauto%2Fsaisies%2Fformulaires%2Fsaisies_cvt.php;h=582fa56442ac06f4f5c4bdfcfa8ab488aa50204e;hp=0000000000000000000000000000000000000000;hb=80b4d3e85f78d402ed2e73f8f5d1bf4c19962eed;hpb=aaf970bf4cdaf76689ecc10609048e18d073820c diff --git a/www/plugins/auto/saisies/formulaires/saisies_cvt.php b/www/plugins/auto/saisies/formulaires/saisies_cvt.php new file mode 100644 index 0000000..582fa56 --- /dev/null +++ b/www/plugins/auto/saisies/formulaires/saisies_cvt.php @@ -0,0 +1,41 @@ + 'input', + 'options' => array( + 'nom' => 'nom', + 'label' => 'Nom' + ) + ), + array( + 'saisie' => 'input', + 'options' => array( + 'nom' => 'email', + 'obligatoire' => 'oui', + 'label' => 'E-mail' + ), + 'verifier' => array( + 'type' => 'email' + ) + ), + array( + 'saisie' => 'textarea', + 'options' => array( + 'nom' => 'message', + 'obligatoire' => 'oui', + 'label' => 'Un message' + ), + 'verifier' => array( + 'type' => 'taille', + 'options' => array('min' => 10) + ) + ) + ); +} + +?>