[SPIP] +spip v3.0.17
[lhc/web/clavette_www.git] / www / plugins-dist / porte_plume / porte_plume_ieconfig.php
1 <?php
2
3 /**
4 * Déclarations des configurations qui peuvent être sauvegardées
5 *
6 * @plugin Porte Plume pour SPIP
7 * @license GPL
8 * @package SPIP\PortePlume\Pipelines
9 **/
10
11 if (!defined("_ECRIRE_INC_VERSION")) return;
12
13 /**
14 * Ajoute les metas sauvegardables du porte plume pour le plugin IEConfig
15 *
16 * @pipeline ieconfig_metas
17 *
18 * @param array $table
19 * Déclaration des sauvegardes
20 * @return array
21 * Déclaration des sauvegardes complétées
22 **/
23 function porte_plume_ieconfig_metas($table){
24 $table['porte_plume']['titre'] = _T('barreoutils:info_barre_outils_public');
25 $table['porte_plume']['icone'] = 'porte-plume-16.png';
26 $table['porte_plume']['metas_brutes'] = 'barre_outils_public';
27
28 return $table;
29 }
30
31 ?>