[SPIP] +spip v3.0.17
[lhc/web/clavette_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")) return;
12
13 /**
14 * Ajoute les metas sauvegardables de SVP 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 svp_ieconfig_metas($table){
24 $table['svp']['titre'] = _T('svp:titre_page_configurer');
25 $table['svp']['icone'] = 'svp-16.png';
26 $table['svp']['metas_serialize'] = 'svp';
27
28 return $table;
29 }
30
31 ?>