2dcd767058e4f7f18be65e659d194e7f8c7d02ab
[lhc/web/www.git] / www / plugins-dist / statistiques / stats_ieconfig.php
1 <?php
2
3 /**
4 * Déclarations des configurations qui peuvent être sauvegardées
5 *
6 * @plugin Statistiques pour SPIP
7 * @license GNU/GPL
8 * @package SPIP\Stats\Pipelines
9 **/
10
11 if (!defined("_ECRIRE_INC_VERSION")) {
12 return;
13 }
14
15 /**
16 * Ajoute les metas sauvegardables de Statistiques 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 stats_ieconfig_metas($table) {
26 $table['statistiques']['titre'] = _T('statistiques:info_forum_statistiques');
27 $table['statistiques']['icone'] = 'statistique-16.png';
28 $table['statistiques']['metas_brutes'] = 'activer_statistiques,activer_captures_referers';
29
30 return $table;
31 }