[SPIP][PLUGINS] v3.0-->v3.2
[lhc/web/www.git] / www / plugins-dist / svp / svp_ieconfig.php
1 <?php
2
3 /**
4 * Déclarations des configurations qui peuvent être sauvegardées
5 *
6 * @plugin SVP pour SPIP
7 * @license GPL
8 * @package SPIP\SVP\Pipelines
9 **/
10
11 if (!defined("_ECRIRE_INC_VERSION")) {
12 return;
13 }
14
15 /**
16 * Ajoute les metas sauvegardables de SVP pour le plugin IEConfig
17 *
18 * @pipeline ieconfig_metas
19 *
20 * @param array $table
21 * Déclaration des sauvegardes
22 * @return array
23 * Déclaration des sauvegardes complétées
24 **/
25 function svp_ieconfig_metas($table) {
26 $table['svp']['titre'] = _T('svp:titre_page_configurer');
27 $table['svp']['icone'] = 'svp-16.png';
28 $table['svp']['metas_serialize'] = 'svp';
29
30 return $table;
31 }