1
|
<?php
|
2
|
/**
|
3
|
*
|
4
|
* @category modules
|
5
|
* @package code
|
6
|
* @author WebsiteBaker Project
|
7
|
* @copyright 2009-2011, Website Baker Org. e.V.
|
8
|
* @link http://www.websitebaker2.org/
|
9
|
* @license http://www.gnu.org/licenses/gpl.html
|
10
|
* @platform WebsiteBaker 2.8.x
|
11
|
* @requirements PHP 5.2.2 and higher
|
12
|
* @version $Id: install.php 1374 2011-01-10 12:21:47Z Luisehahne $
|
13
|
* @filesource $HeadURL: http://svn.websitebaker2.org/branches/2.8.x/wb/modules/code/install.php $
|
14
|
* @lastmodified $Date: 2011-01-10 13:21:47 +0100 (Mo, 10. Jan 2011) $
|
15
|
*
|
16
|
*/
|
17
|
|
18
|
/* -------------------------------------------------------- */
|
19
|
if(defined('WB_PATH') == false)
|
20
|
{
|
21
|
// Stop this file being access directly
|
22
|
die('<head><title>Access denied</title></head><body><h2 style="color:red;margin:3em auto;text-align:center;">Cannot access this file directly</h2></body></html>');
|
23
|
}
|
24
|
/* -------------------------------------------------------- */
|
25
|
|
26
|
if(defined('WB_URL'))
|
27
|
{
|
28
|
|
29
|
// Create table
|
30
|
$database->query("DROP TABLE IF EXISTS `".TABLE_PREFIX."mod_code`");
|
31
|
$mod_code = 'CREATE TABLE IF NOT EXISTS `'.TABLE_PREFIX.'mod_code` ('
|
32
|
. ' `section_id` INT NOT NULL DEFAULT \'0\','
|
33
|
. ' `page_id` INT NOT NULL DEFAULT \'0\','
|
34
|
. ' `content` TEXT NOT NULL,'
|
35
|
. ' PRIMARY KEY ( `section_id` )'
|
36
|
. ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
|
37
|
$database->query($mod_code);
|
38
|
|
39
|
$mod_search = "SELECT * FROM ".TABLE_PREFIX."search WHERE value = 'code'";
|
40
|
$insert_search = $database->query($mod_search);
|
41
|
if( $insert_search->numRows() == 0 )
|
42
|
{
|
43
|
// Insert info into the search table
|
44
|
// Module query info
|
45
|
$field_info = array();
|
46
|
$field_info['page_id'] = 'page_id';
|
47
|
$field_info['title'] = 'page_title';
|
48
|
$field_info['link'] = 'link';
|
49
|
$field_info['description'] = 'description';
|
50
|
$field_info['modified_when'] = 'modified_when';
|
51
|
$field_info['modified_by'] = 'modified_by';
|
52
|
$field_info = serialize($field_info);
|
53
|
$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('module', 'code', '$field_info')");
|
54
|
// Query start
|
55
|
$query_start_code = "SELECT [TP]pages.page_id, [TP]pages.page_title, [TP]pages.link, [TP]pages.description, [TP]pages.modified_when, [TP]pages.modified_by FROM [TP]mod_code, [TP]pages WHERE ";
|
56
|
$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_start', '$query_start_code', 'code')");
|
57
|
// Query body
|
58
|
$query_body_code = " [TP]pages.page_id = [TP]mod_code.page_id AND [TP]mod_code.content [O] \'[W][STRING][W]\' AND [TP]pages.searching = \'1\'";
|
59
|
$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_body', '$query_body_code', 'code')");
|
60
|
// Query end
|
61
|
$query_end_code = "";
|
62
|
$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_end', '$query_end_code', 'code')");
|
63
|
|
64
|
// Insert blank row (there needs to be at least on row for the search to work)
|
65
|
$database->query("INSERT INTO ".TABLE_PREFIX."mod_code (page_id,section_id) VALUES ('0','0')");
|
66
|
|
67
|
}
|
68
|
}
|