File "mots_ieconfig.php"

Full path: /home/argothem/www/v4_old/plugins-dist/mots/mots_ieconfig.php
File size: 665 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

/**
 * Déclarations des configurations qui peuvent être sauvegardées
 *
 * @package SPIP\Mots\Pipelines
 **/

if (!defined('_ECRIRE_INC_VERSION')) {
	return;
}

/**
 * Ajoute les metas sauvegardables de Mots pour le plugin IEConfig
 *
 * @pipeline ieconfig_metas
 *
 * @param array $table
 *     Déclaration des sauvegardes
 * @return array
 *     Déclaration des sauvegardes complétées
 **/
function mots_ieconfig_metas($table) {
	$table['mots_meta']['titre'] = _T('mots:info_mots_cles');
	$table['mots_meta']['icone'] = 'mot-16.png';
	$table['mots_meta']['metas_brutes'] = 'articles_mots,config_precise_groupes,mots_cles_forums';

	return $table;
}