Line | |
---|
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 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.