Project

General

Profile

1 4 ryan
<?php
2
3 106 stefan
// $Id$
4 4 ryan
5
/*
6
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2005, Ryan Djurovich
9
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23
24
*/
25
26 106 stefan
// Include the config file
27
require('../config.php');
28
require_once(WB_PATH."/framework/class.frontend.php");
29
$wb = new frontend();
30
31
32 4 ryan
// Required page details
33
$page_id = 0;
34
$page_description = '';
35
$page_keywords = '';
36
define('PAGE_ID', 0);
37
define('ROOT_PARENT', 0);
38
define('PARENT', 0);
39
define('LEVEL', 0);
40
define('PAGE_TITLE', 'Search');
41
define('MENU_TITLE', 'Search');
42
define('MODULE', '');
43
define('VISIBILITY', 'public');
44
define('PAGE_CONTENT', 'search.php');
45
46
47
// Include database class file
48
require_once(WB_PATH.'/framework/class.database.php');
49
50
// Find out what the search template is
51
$database = new database();
52
$query_template = $database->query("SELECT value FROM ".TABLE_PREFIX."search WHERE name = 'template' LIMIT 1");
53
$fetch_template = $query_template->fetchRow();
54
$template = $fetch_template['value'];
55
if($template != '') {
56
	define('TEMPLATE', $template);
57
}
58
unset($template);
59
60
// Include index (wrapper) file
61
require(WB_PATH.'/index.php');
62
63
?>