Project

General

Profile

1 1457 Luisehahne
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         wysiwyg
6
 * @author          WebsiteBaker Project
7 1576 darkviper
 * @copyright       2009-2012, Website Baker Org. e.V.
8 1457 Luisehahne
 * @link			http://www.websitebaker2.org/
9
 * @license         http://www.gnu.org/licenses/gpl.html
10 1652 Luisehahne
 * @platform        WebsiteBaker 2.8.3
11 1457 Luisehahne
 * @requirements    PHP 5.2.2 and higher
12
 * @version      	$Id$
13
 * @filesource		$HeadURL$
14
 * @lastmodified    $Date$
15
 *
16
 */
17 1538 Luisehahne
/* -------------------------------------------------------- */
18 1576 darkviper
// Must include code to stop this file being accessed directly
19
if(!defined('WB_PATH')) {
20 1652 Luisehahne
	require_once(dirname(dirname(dirname(__FILE__))).'/framework/globalExceptionHandler.php');
21 1576 darkviper
	throw new IllegalFileException();
22 1538 Luisehahne
}
23
/* -------------------------------------------------------- */
24 1457 Luisehahne
25
if(defined('WB_URL'))
26
{
27
	// Create table
28
	//$database->query("DROP TABLE IF EXISTS `".TABLE_PREFIX."mod_wysiwyg`");
29
	$mod_wysiwyg = 'CREATE TABLE IF NOT EXISTS `'.TABLE_PREFIX.'mod_wysiwyg` ( '
30
		. ' `section_id` INT NOT NULL DEFAULT \'0\','
31
		. ' `page_id` INT NOT NULL DEFAULT \'0\','
32
		. ' `content` LONGTEXT NOT NULL ,'
33
		. ' `text` LONGTEXT NOT NULL ,'
34
		. ' PRIMARY KEY ( `section_id` ) '
35 1538 Luisehahne
		. ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
36 1457 Luisehahne
	$database->query($mod_wysiwyg);
37
38 1576 darkviper
// remove old version of search (deprecated)
39
//    $mod_search = "SELECT * FROM ".TABLE_PREFIX."search  WHERE value = 'wysiwyg'";
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', 'wysiwyg', '$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_wysiwyg, [TP]pages WHERE ";
56
//    	$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_start', '$query_start_code', 'wysiwyg')");
57
//    	// Query body
58
//    	$query_body_code = " [TP]pages.page_id = [TP]mod_wysiwyg.page_id AND [TP]mod_wysiwyg.text [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', 'wysiwyg')");
60
//    	// Query end
61
//    	$query_end_code = "";
62
//    	$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_end', '$query_end_code', 'wysiwyg')");
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_wysiwyg (page_id,section_id) VALUES ('0','0')");
66
//    }
67 1457 Luisehahne
}