50 lines
960 B
PHP
50 lines
960 B
PHP
<?php
|
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
|
return;
|
|
}
|
|
|
|
function inc_gamucontact_dist(){
|
|
|
|
return [
|
|
[
|
|
'saisie' => 'input',
|
|
'options' => array(
|
|
'nom' => 'nom',
|
|
'label' => '<:gamucontact:votre_nom:>',
|
|
'obligatoire' => 'oui',
|
|
'class' => 'w100',
|
|
//'fonction' => 'ma_super_fonction'
|
|
)
|
|
],
|
|
[
|
|
'saisie' => 'input',
|
|
'options' => array(
|
|
'nom' => 'email_contact',
|
|
'label' => '<:gamucontact:votre_email:>',
|
|
'class' => 'w100',
|
|
'obligatoire' => 'oui',
|
|
)
|
|
],
|
|
[
|
|
'saisie' => 'input',
|
|
'options' => array(
|
|
'nom' => 'objet',
|
|
'label' => '<:gamucontact:objet:>',
|
|
'obligatoire' => 'oui',
|
|
'class' => 'w100'
|
|
//'fonction' => 'ma_super_fonction'
|
|
)
|
|
],
|
|
[
|
|
'saisie' => 'textarea',
|
|
'options' => array(
|
|
'nom' => 'texte',
|
|
'label' => '<:gamucontact:message:>',
|
|
'obligatoire' => 'oui',
|
|
'class' => 'w100',
|
|
'rows' => 4
|
|
//'fonction' => 'ma_super_fonction'
|
|
)
|
|
],
|
|
];
|
|
}
|