[SPIP] +spip v3.0.17
[lhc/web/clavette_www.git] / www / plugins-dist / forum / forum_ieconfig.php
1 <?php
2
3 if (!defined("_ECRIRE_INC_VERSION")) return;
4
5 // On déclare ici la config du core
6 function forum_ieconfig_metas($table){
7 $table['forums_contenu']['titre'] = _T('forum:titre_forum');
8 $table['forums_contenu']['icone'] = 'forum-public-16.png';
9 $table['forums_contenu']['metas_brutes'] = 'forums_titre,forums_texte,forums_urlref,forums_afficher_barre,formats_documents_forum';
10 $table['forums_notifications']['titre'] = _T('forum:info_envoi_forum');
11 $table['forums_notifications']['icone'] = 'annonce-16.png';
12 $table['forums_notifications']['metas_brutes'] = 'prevenir_auteurs';
13 $table['forums_participants']['titre'] = _T('forum:info_mode_fonctionnement_defaut_forum_public');
14 $table['forums_participants']['icone'] = 'forum-interne-16.png';
15 $table['forums_participants']['metas_brutes'] = 'forums_publics';
16 $table['forums_prives']['titre'] = _T('forum:titre_config_forums_prive');
17 $table['forums_prives']['icone'] = 'forum-interne-16.png';
18 $table['forums_prives']['metas_brutes'] = 'forum_prive_objets,forum_prive,forum_prive_admin';
19
20 return $table;
21 }
22
23 ?>