root/elgg/trunk/mod/forum/trunk/config.php

Revision 176, 1.0 kB (checked in by cedenoj, 10 months ago)

refs #2827 Adding forum plugin for elgg

Line 
1 <?php
2
3 //SETUP THE FORUM DEFAULT FOR YOUR ELGG SYSTEM
4 //0=All community blogs become forum UNLESS the community owner sets a flag to go back to being a community blog
5 //1=All community blogs remain community blogs UNLESS the community owner sets a flag to turn them into a forum
6 //this flag is set in the "Edit Community details" area
7 $forum_default = 0;
8
9 //SETUP THE FORUM SORTING ATTRIBUTES FOR YOUR ELGG SYSTEM
10 //0=Forum discussions are sorted by the date of the original post (newest thread goes at top)
11 //1=Forum discussions are sorted by the "last updated" attribute of the thread so that active discussions rise to the top of the forum...
12 //NOTE: THIS REQUIRES THE ADDITION OF A NEW FIELD IN THE weblog_posts table ("last_updated  int(11)      NULL ")
13 //THIS SHOULD HAPPEN AUTOMATICALLY WHEN YOU LOG IN AS "NEWS" after installing this plugin
14 //NOTE: YOU WON'T SEE ANY EFFECT OF THIS CHANGE UNTIL A THREAD IS UPDATED (weblog_post is edited, or a comment added/deleted)
15
16 $forum_sort = 1;
17
18 ?>
19
Note: See TracBrowser for help on using the browser.