mirror of
https://github.com/e107inc/e107.git
synced 2025-01-18 05:09:05 +01:00
11 lines
426 B
PHP
11 lines
426 B
PHP
<?php
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
if (file_exists(e_PLUGIN."calendar_menu/languages/".e_LANGUAGE."_search.php")) {
|
|
include_once(e_PLUGIN."calendar_menu/languages/".e_LANGUAGE."_search.php");
|
|
} else {
|
|
include_once(e_PLUGIN."calendar_menu/languages/English_search.php");
|
|
}
|
|
$search_info[] = array('sfile' => e_PLUGIN.'calendar_menu/search/search_parser.php', 'qtype' => CM_SCH_LAN_1, 'refpage' => 'calendar.php');
|
|
|
|
?>
|