gamuMail/gamumail_options.php

23 lines
466 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';
}