xref: /plugin/discussion/conf/default.php (revision e6b2f14246dd7b1ef9b5e17e611a1d1140dbbd4e)
1<?php
2/**
3 * Options for the discussion plugin
4 */
5
6$conf['automatic']    = 0;   // discussion section on every page by default
7$conf['allowguests']  = 1;   // should unregistred users be able to comment?
8$conf['showguests']   = 1;   // show/hide comments from guests
9$conf['linkemail']    = 0;   // link usernames with e-mail addresses
10$conf['useavatar']    = 1;   // use Avatar Plugin to display user images in comments
11$conf['urlfield']     = 0;   // allow entering an URL
12$conf['addressfield'] = 0;   // allow entering an address
13$conf['adminimport']  = 0;   // allow admins to set all the fields for import
14$conf['usecocomment'] = 0;   // use coComment comment tracking
15$conf['wikisyntaxok'] = 1;   // allow wiki syntax in comments
16$conf['subscribe']    = 1;   // enable/disable subscribe to comments
17$conf['newestfirst']  = 0;   // list newest comments first
18$conf['moderate']     = 0;   // moderate newly added comments
19$conf['usethreading'] = 1;
20$conf['userealname']  = 1;
21$conf['threads_formposition'] = 'bottom'; // position of new thread form
22$conf['visibilityButton'] = 0; // show/hide button to hide the discussion section
23$conf['moderatorgroups']  = '';
24
25//Setup VIM: ex: et ts=2 enc=utf-8 :
26