d'options + prechargement des modeles pour le sujet et texte * ajout html du formulaire
22 lines
465 B
PHP
22 lines
465 B
PHP
<?php
|
|
/**
|
|
* Options au chargement du plugin GamuMail
|
|
*
|
|
* @plugin GamuMail
|
|
* @copyright 2020
|
|
* @author tofulm
|
|
* @licence GNU/GPL
|
|
* @package SPIP\Gamumail\Options
|
|
*/
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
|
return;
|
|
}
|
|
|
|
|
|
function crayons_determine_input_mode_type_gamumail($type, $champ, $sqltype) {
|
|
// array de tous les champs devant êtres en textarea
|
|
$Ttextarea = array('texte');
|
|
|
|
return in_array($champ, $Ttextarea) ? 'texte' : 'ligne';
|
|
}
|