Source for file forumsearch.php
Documentation is available at forumsearch.php
==============================================================================
Dokeos - elearning and course management software
Copyright (c) 2008 Dokeos S.A.
Copyright (c) 2008 Ghent University (UGent)
For a full list of contributors, see "credits.txt".
The full license can be read in "license.txt".
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
See the GNU General Public License for more details.
Contact address: Dokeos, Rue du Corbeau, 108, B-1030 Brussels, Belgium
==============================================================================
* These files are a complete rework of the forum. The database structure is
* based on phpBB but all the code is rewritten. A lot of new functionalities
* - forum categories and forums can be sorted up or down, locked or made invisible
* - consistent and integrated forum administration
* - forum options: are students allowed to edit their post?
* moderation of posts (approval)
* reply only forums (students cannot create new threads)
* multiple forums per group
* - new view option: nested view
* @Author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @Copyright Ghent University
* @Copyright Patrick Cool
// name of the language file that needs to be included
$language_file = 'forum';
// including the global dokeos file
require ('../inc/global.inc.php');
// notice for unauthorized people.
// including additional library scripts
require_once (api_get_path(LIBRARY_PATH). 'formvalidator/FormValidator.class.php');
include_once (api_get_path(LIBRARY_PATH). 'groupmanager.lib.php');
include(api_get_path(LIBRARY_PATH). 'events.lib.inc.php');
include('forumfunction.inc.php');
include('forumconfig.inc.php');
$interbreadcrumb[]= array('url' => 'index.php','name' => $nameTools);
$interbreadcrumb[]= array('url' => 'forumsearch.php','name' => get_lang('ForumSearch'));
// Display the tool title
|