mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
13 lines
311 B
PHP
13 lines
311 B
PHP
|
<?php
|
||
|
|
||
|
if (!defined("_ECRIRE_INC_VERSION")) return;
|
||
|
|
||
|
function organiseur_ieconfig_metas($table){
|
||
|
$table['organiseur']['titre'] = _T('titre_messagerie_agenda');
|
||
|
$table['organiseur']['icone'] = 'messagerie-16.png';
|
||
|
$table['organiseur']['metas_brutes'] = 'messagerie_agenda';
|
||
|
|
||
|
return $table;
|
||
|
}
|
||
|
|
||
|
?>
|