dokeos-forum
[ class tree: dokeos-forum ] [ index: dokeos-forum ] [ all elements ]

Source for file forumsearch.php

Documentation is available at forumsearch.php

  1. <?php //$id: $
  2. /*
  3. ==============================================================================
  4.     Dokeos - elearning and course management software
  5.  
  6.     Copyright (c) 2008 Dokeos S.A.
  7.     Copyright (c) 2008 Ghent University (UGent)
  8.  
  9.     For a full list of contributors, see "credits.txt".
  10.     The full license can be read in "license.txt".
  11.  
  12.     This program is free software; you can redistribute it and/or
  13.     modify it under the terms of the GNU General Public License
  14.     as published by the Free Software Foundation; either version 2
  15.     of the License, or (at your option) any later version.
  16.  
  17.     See the GNU General Public License for more details.
  18.  
  19.     Contact address: Dokeos, Rue du Corbeau, 108, B-1030 Brussels, Belgium
  20.     Mail: info@dokeos.com
  21. ==============================================================================
  22. */
  23.  
  24. /**
  25. *    These files are a complete rework of the forum. The database structure is
  26. *    based on phpBB but all the code is rewritten. A lot of new functionalities
  27. *    are added:
  28. *     - forum categories and forums can be sorted up or down, locked or made invisible
  29. *    - consistent and integrated forum administration
  30. *     - forum options:     are students allowed to edit their post?
  31. *                         moderation of posts (approval)
  32. *                         reply only forums (students cannot create new threads)
  33. *                         multiple forums per group
  34. *    - sticky messages
  35. *     - new view option: nested view
  36. *     - quoting a message
  37. *
  38. *    @Author Patrick Cool <patrick.cool@UGent.be>, Ghent University
  39. *    @Copyright Ghent University
  40. *    @Copyright Patrick Cool
  41. *
  42. *     @package dokeos.forum
  43. */
  44.  
  45. // name of the language file that needs to be included
  46. $language_file 'forum';
  47.  
  48. // including the global dokeos file
  49. require ('../inc/global.inc.php');
  50.  
  51. // the section (tabs)
  52. $this_section=SECTION_COURSES;
  53.  
  54. // notice for unauthorized people.
  55.  
  56. // including additional library scripts
  57. require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
  58. include_once (api_get_path(LIBRARY_PATH).'groupmanager.lib.php');
  59. include(api_get_path(LIBRARY_PATH).'events.lib.inc.php');
  60. include('forumfunction.inc.php');
  61. include('forumconfig.inc.php');
  62.  
  63.  
  64. // name of the tool
  65. $nameTools=get_lang('Forum');
  66.  
  67. // breadcrumbs
  68. $interbreadcrumb[]=array('url' => 'index.php','name' => $nameTools);
  69. $interbreadcrumb[]=array('url' => 'forumsearch.php','name' => get_lang('ForumSearch'));
  70.  
  71. // Display the header
  72. Display :: display_header($nameTools);
  73.  
  74. // Display the tool title
  75.  
  76. // tool introduction
  77.  
  78. // tracking
  79.  
  80. // forum search
  81.  
  82. // footer
  83. ?>

Documentation generated on Thu, 12 Jun 2008 13:32:06 -0500 by phpDocumentor 1.4.1