compteSPIP/comptespip_options.php

43 lines
758 B
PHP

<?php
/**
* Options au chargement du plugin GamuCompte
*
* @plugin GamuCompte
* @copyright 2020
* @author tofulm
* @licence GNU/GPL
* @package SPIP\Gamucompte\Options
*/
if (!defined('_ECRIRE_INC_VERSION')) {
return;
}
$GLOBALS['comptespip_editer'] = [
[
'saisie' => 'input',
'options' => array(
'nom' => 'nom',
'label' => 'Votre Nom',
'obligatoire' => 'oui',
//'fonction' => 'ma_super_fonction'
)
],
[
'saisie' => 'input',
'options' => array(
'nom' => 'prenom',
'label' => 'Votre prénom',
'obligatoire' => 'oui',
//'fonction' => 'ma_super_fonction'
)
],
[
'saisie' => 'input',
'options' => array(
'nom' => 'email',
'label' => 'Votre Email',
'obligatoire' => 'oui',
)
]
];