xref: /plugin/discussion/conf/default.php (revision ca785d71be15cb374602f3f8295501f3550bffec)
1f0fda08aSwikidesign<?php
2f0fda08aSwikidesign/**
3f0fda08aSwikidesign * Options for the discussion plugin
4f0fda08aSwikidesign */
5f0fda08aSwikidesign
6479dd10fSwikidesign$conf['automatic']    = 0;   // discussion section on every page by default
7f0bcde18SGerrit Uitslag$conf['excluded_ns']  = '';  // list of namespaces to revert the option above (a regular expression)
8f0fda08aSwikidesign$conf['allowguests']  = 1;   // should unregistred users be able to comment?
97d091ad1SMichael Klier$conf['showguests']   = 1;   // show/hide comments from guests
10f0fda08aSwikidesign$conf['linkemail']    = 0;   // link usernames with e-mail addresses
11035d400bSwikidesign$conf['useavatar']    = 1;   // use Avatar Plugin to display user images in comments
12f0fda08aSwikidesign$conf['urlfield']     = 0;   // allow entering an URL
13f0fda08aSwikidesign$conf['addressfield'] = 0;   // allow entering an address
141ba72c23Swikidesign$conf['adminimport']  = 0;   // allow admins to set all the fields for import
15f0fda08aSwikidesign$conf['wikisyntaxok'] = 1;   // allow wiki syntax in comments
16a43e61cfSMichael Klier$conf['subscribe']    = 1;   // enable/disable subscribe to comments
17dbd9d5cdSMichael Klier$conf['newestfirst']  = 0;   // list newest comments first
18a44bc9f7SMichael Klier$conf['moderate']     = 0;   // moderate newly added comments
1931aab30eSGina Haeussge$conf['usethreading'] = 1;
200ff5ab97SMichael Klier$conf['userealname']  = 1;
21cc497149Swikidesign$conf['threads_formposition'] = 'bottom'; // position of new thread form
2246178401Slupo49$conf['visibilityButton'] = 0; // show/hide button to hide the discussion section
23e6b2f142Slupo49$conf['moderatorgroups']  = '';
24*ca785d71SMichael Hamann$conf['moderatorsnotify'] = 0;
2546178401Slupo49
26f0fda08aSwikidesign//Setup VIM: ex: et ts=2 enc=utf-8 :
27