Project

General

Profile

1
<?php
2

    
3
// $Id: install.php 915 2009-01-21 19:27:01Z Ruebenwurzel $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2009, 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
/*
27
The Website Baker Project would like to thank Rudolph Lartey <www.carbonect.com>
28
for his contributions to this module - adding extra field types
29
*/
30

    
31
if(defined('WB_URL')) {
32
		
33
	// Create tables
34
	$database->query("DROP TABLE IF EXISTS `".TABLE_PREFIX."mod_form_fields`");
35
	$mod_form = 'CREATE TABLE `'.TABLE_PREFIX.'mod_form_fields` ( `field_id` INT NOT NULL AUTO_INCREMENT,'
36
		. ' `section_id` INT NOT NULL DEFAULT \'0\' ,'
37
		. ' `page_id` INT NOT NULL DEFAULT \'0\' ,'
38
		. ' `position` INT NOT NULL DEFAULT \'0\' ,'
39
		. ' `title` VARCHAR(255) NOT NULL DEFAULT \'\' ,'
40
		. ' `type` VARCHAR(255) NOT NULL DEFAULT \'\' ,'
41
		. ' `required` INT NOT NULL DEFAULT \'0\' ,'
42
		. ' `value` TEXT NOT NULL ,'
43
		. ' `extra` TEXT NOT NULL ,'
44
		. ' PRIMARY KEY ( `field_id` ) '
45
		. ' )';
46
	$database->query($mod_form);
47
	$database->query("DROP TABLE IF EXISTS `".TABLE_PREFIX."mod_form_settings`");
48
	$mod_form = 'CREATE TABLE `'.TABLE_PREFIX.'mod_form_settings` ('
49
		. ' `section_id` INT NOT NULL DEFAULT \'0\' ,'
50
		. ' `page_id` INT NOT NULL DEFAULT \'0\' ,'
51
		. ' `header` TEXT NOT NULL ,'
52
		. ' `field_loop` TEXT NOT NULL ,'
53
		. ' `footer` TEXT NOT NULL ,'
54
		. ' `email_to` TEXT NOT NULL ,'
55
		. ' `email_from` VARCHAR(255) NOT NULL DEFAULT \'\' ,'
56
		. ' `email_fromname` VARCHAR(255) NOT NULL DEFAULT \'\' ,'
57
		. ' `email_subject` VARCHAR(255) NOT NULL DEFAULT \'\' ,'
58
		. ' `success_page` TEXT NOT NULL ,'
59
		. ' `success_email_to` TEXT NOT NULL ,'
60
		. ' `success_email_from` VARCHAR(255) NOT NULL DEFAULT \'\' ,'
61
		. ' `success_email_fromname` VARCHAR(255) NOT NULL DEFAULT \'\' ,'
62
		. ' `success_email_text` TEXT NOT NULL ,'
63
		. ' `success_email_subject` VARCHAR(255) NOT NULL DEFAULT \'\' ,'
64
		. ' `stored_submissions` INT NOT NULL DEFAULT \'0\' ,'
65
		. ' `max_submissions` INT NOT NULL DEFAULT \'0\' ,'
66
		. ' `use_captcha` INT NOT NULL DEFAULT \'0\' ,'
67
		. ' PRIMARY KEY ( `section_id` ) '
68
		. ' )';
69
	$database->query($mod_form);
70
	
71
	$database->query("DROP TABLE IF EXISTS `".TABLE_PREFIX."mod_form_submissions`");
72
	$mod_form = 'CREATE TABLE `'.TABLE_PREFIX.'mod_form_submissions` ( `submission_id` INT NOT NULL AUTO_INCREMENT,'
73
		. ' `section_id` INT NOT NULL DEFAULT \'0\' ,'
74
		. ' `page_id` INT NOT NULL DEFAULT \'0\' ,'
75
		. ' `submitted_when` INT NOT NULL DEFAULT \'0\' ,'
76
		. ' `submitted_by` INT NOT NULL DEFAULT \'0\','
77
		. ' `body` TEXT NOT NULL,'
78
		. ' PRIMARY KEY ( `submission_id` ) '
79
		. ' )';
80
	$database->query($mod_form);
81
		
82
	// Insert info into the search table
83
	// Module query info
84
	$field_info = array();
85
	$field_info['page_id'] = 'page_id';
86
	$field_info['title'] = 'page_title';
87
	$field_info['link'] = 'link';
88
	$field_info['description'] = 'description';
89
	$field_info['modified_when'] = 'modified_when';
90
	$field_info['modified_by'] = 'modified_by';
91
	$field_info = serialize($field_info);
92
	$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('module', 'form', '$field_info')");
93
	// Query start
94
	$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_form_fields, [TP]mod_form_settings, [TP]pages WHERE ";
95
	$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_start', '$query_start_code', 'form')");
96
	// Query body
97
	$query_body_code = " [TP]pages.page_id = [TP]mod_form_settings.page_id AND [TP]mod_form_settings.header LIKE \'%[STRING]%\'
98
	OR [TP]pages.page_id = [TP]mod_form_settings.page_id AND [TP]mod_form_settings.footer LIKE \'%[STRING]%\'
99
	OR [TP]pages.page_id = [TP]mod_form_fields.page_id AND [TP]mod_form_fields.title LIKE \'%[STRING]%\' ";
100
	$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_body', '$query_body_code', 'form')");
101
	// Query end
102
	$query_end_code = "";
103
	$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_end', '$query_end_code', 'form')");
104
	
105
	// Insert blank row (there needs to be at least on row for the search to work)
106
	$database->query("INSERT INTO ".TABLE_PREFIX."mod_form_fields (page_id,section_id) VALUES ('0','0')");
107
	$database->query("INSERT INTO ".TABLE_PREFIX."mod_form_settings (page_id,section_id) VALUES ('0','0')");
108

    
109
}
110

    
111
?>
(10-10/21)