You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
660 B
30 lines
660 B
![]()
5 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Déclarations des configurations qui peuvent être sauvegardées
|
||
|
*
|
||
|
* @package SPIP\Organiseur\Pipelines
|
||
|
**/
|
||
|
|
||
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Ajoute les metas sauvegardables d'Organiseur pour le plugin IEConfig
|
||
|
*
|
||
|
* @pipeline ieconfig_metas
|
||
|
*
|
||
|
* @param array $table
|
||
|
* Déclaration des sauvegardes
|
||
|
* @return array
|
||
|
* Déclaration des sauvegardes complétées
|
||
|
**/
|
||
|
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;
|
||
|
}
|