Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/search/index.php

19 lines
552 B

<?php
/* For licensing terms, see /license.txt */
/**
* This file includes lp_list_search to avoid duplication of code, it
* bootstraps chamilo api enough to make lp_list_search work.
* @package chamilo.search
*/
require_once __DIR__.'/../inc/global.inc.php';
$this_section = SECTION_COURSES;
if (extension_loaded('xapian')) {
require '../lp/lp_list_search.php';
} else {
Display::display_header(get_lang('Search'));
Display::display_error_message(get_lang('SearchXapianModuleNotInstalled'));
Display::display_footer();
exit;
}