1
|
<?php
|
2
|
|
3
|
// $Id: install.php 561 2008-01-18 20:48:09Z Ruebenwurzel $
|
4
|
|
5
|
/*
|
6
|
|
7
|
Website Baker Project <http://www.websitebaker.org/>
|
8
|
Copyright (C) 2004-2008, 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_subject` VARCHAR(255) NOT NULL DEFAULT \'\' ,'
|
57
|
. ' `success_page` TEXT NOT NULL ,'
|
58
|
. ' `success_email_to` TEXT NOT NULL ,'
|
59
|
. ' `success_email_from` VARCHAR(255) NOT NULL DEFAULT \'\' ,'
|
60
|
. ' `success_email_text` TEXT NOT NULL ,'
|
61
|
. ' `success_email_subject` VARCHAR(255) NOT NULL DEFAULT \'\' ,'
|
62
|
. ' `stored_submissions` INT NOT NULL DEFAULT \'0\' ,'
|
63
|
. ' `max_submissions` INT NOT NULL DEFAULT \'0\' ,'
|
64
|
. ' `use_captcha` INT NOT NULL DEFAULT \'0\' ,'
|
65
|
. ' PRIMARY KEY ( `section_id` ) '
|
66
|
. ' )';
|
67
|
$database->query($mod_form);
|
68
|
|
69
|
$database->query("DROP TABLE IF EXISTS `".TABLE_PREFIX."mod_form_submissions`");
|
70
|
$mod_form = 'CREATE TABLE `'.TABLE_PREFIX.'mod_form_submissions` ( `submission_id` INT NOT NULL AUTO_INCREMENT,'
|
71
|
. ' `section_id` INT NOT NULL DEFAULT \'0\' ,'
|
72
|
. ' `page_id` INT NOT NULL DEFAULT \'0\' ,'
|
73
|
. ' `submitted_when` INT NOT NULL DEFAULT \'0\' ,'
|
74
|
. ' `submitted_by` INT NOT NULL DEFAULT \'0\','
|
75
|
. ' `body` TEXT NOT NULL,'
|
76
|
. ' PRIMARY KEY ( `submission_id` ) '
|
77
|
. ' )';
|
78
|
$database->query($mod_form);
|
79
|
|
80
|
// Insert info into the search table
|
81
|
// Module query info
|
82
|
$field_info = array();
|
83
|
$field_info['page_id'] = 'page_id';
|
84
|
$field_info['title'] = 'page_title';
|
85
|
$field_info['link'] = 'link';
|
86
|
$field_info['description'] = 'description';
|
87
|
$field_info['modified_when'] = 'modified_when';
|
88
|
$field_info['modified_by'] = 'modified_by';
|
89
|
$field_info = serialize($field_info);
|
90
|
$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('module', 'form', '$field_info')");
|
91
|
// Query start
|
92
|
$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 ";
|
93
|
$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_start', '$query_start_code', 'form')");
|
94
|
// Query body
|
95
|
$query_body_code = " [TP]pages.page_id = [TP]mod_form_settings.page_id AND [TP]mod_form_settings.header LIKE \'%[STRING]%\'
|
96
|
OR [TP]pages.page_id = [TP]mod_form_settings.page_id AND [TP]mod_form_settings.footer LIKE \'%[STRING]%\'
|
97
|
OR [TP]pages.page_id = [TP]mod_form_fields.page_id AND [TP]mod_form_fields.title LIKE \'%[STRING]%\' ";
|
98
|
$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_body', '$query_body_code', 'form')");
|
99
|
// Query end
|
100
|
$query_end_code = "";
|
101
|
$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_end', '$query_end_code', 'form')");
|
102
|
|
103
|
// Insert blank row (there needs to be at least on row for the search to work)
|
104
|
$database->query("INSERT INTO ".TABLE_PREFIX."mod_form_fields (page_id,section_id) VALUES ('0','0')");
|
105
|
$database->query("INSERT INTO ".TABLE_PREFIX."mod_form_settings (page_id,section_id) VALUES ('0','0')");
|
106
|
|
107
|
}
|
108
|
|
109
|
?>
|