Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | /** |
---|
4 | * Déclarations des configurations qui peuvent être sauvegardées |
---|
5 | * |
---|
6 | * @package SPIP\Breves\Pipelines |
---|
7 | **/ |
---|
8 | |
---|
9 | if (!defined("_ECRIRE_INC_VERSION")) { |
---|
10 | return; |
---|
11 | } |
---|
12 | |
---|
13 | /** |
---|
14 | * Ajoute les metas sauvegardables de Brèves 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 breves_ieconfig_metas($table) { |
---|
24 | $table['breves']['titre'] = _T('breves:titre_breves'); |
---|
25 | $table['breves']['icone'] = 'breve-16.png'; |
---|
26 | $table['breves']['metas_brutes'] = 'activer_breves'; |
---|
27 | |
---|
28 | return $table; |
---|
29 | } |
---|
30 | |
---|
31 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.