18 lines
341 B
PHP
18 lines
341 B
PHP
<?php
|
|
/**
|
|
* Fonctions utiles au plugin GamuMail
|
|
*
|
|
* @plugin GamuMail
|
|
* @copyright 2020
|
|
* @author tofulm
|
|
* @licence GNU/GPL
|
|
* @package SPIP\Gamumail\Fonctions
|
|
*/
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
|
return;
|
|
}
|
|
|
|
function gamumail_TabClient($objet, $id_objet, $champ){
|
|
return compact('objet', 'id_objet', 'champ');
|
|
}
|