Project

General

Profile

« Previous | Next » 

Revision 1576

Added by darkviper over 12 years ago

wysiwyg module changed to domain independend image links

View differences:

install.php
4 4
 * @category        modules
5 5
 * @package         wysiwyg
6 6
 * @author          WebsiteBaker Project
7
 * @copyright       2009-2011, Website Baker Org. e.V.
7
 * @copyright       2009-2012, Website Baker Org. e.V.
8 8
 * @link			http://www.websitebaker2.org/
9 9
 * @license         http://www.gnu.org/licenses/gpl.html
10 10
 * @platform        WebsiteBaker 2.8.x
......
14 14
 * @lastmodified    $Date$
15 15
 *
16 16
 */
17
// Must include code to stop this file being access directly
18 17
/* -------------------------------------------------------- */
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>');
18
// Must include code to stop this file being accessed directly
19
if(!defined('WB_PATH')) {
20
	require_once(dirname(dirname(__FILE__)).'/framework/globalExceptionHandler.php');
21
	throw new IllegalFileException();
23 22
}
24 23
/* -------------------------------------------------------- */
25 24

  
26 25
if(defined('WB_URL'))
27 26
{
28

  
29 27
	// Create table
30 28
	//$database->query("DROP TABLE IF EXISTS `".TABLE_PREFIX."mod_wysiwyg`");
31 29
	$mod_wysiwyg = 'CREATE TABLE IF NOT EXISTS `'.TABLE_PREFIX.'mod_wysiwyg` ( '
......
37 35
		. ' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci';
38 36
	$database->query($mod_wysiwyg);
39 37

  
40

  
41
    $mod_search = "SELECT * FROM ".TABLE_PREFIX."search  WHERE value = 'wysiwyg'";
42
    $insert_search = $database->query($mod_search);
43
    if( $insert_search->numRows() == 0 )
44
    {
45
    	// Insert info into the search table
46
    	// Module query info
47
    	$field_info = array();
48
    	$field_info['page_id'] = 'page_id';
49
    	$field_info['title'] = 'page_title';
50
    	$field_info['link'] = 'link';
51
    	$field_info['description'] = 'description';
52
    	$field_info['modified_when'] = 'modified_when';
53
    	$field_info['modified_by'] = 'modified_by';
54
    	$field_info = serialize($field_info);
55
    	$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('module', 'wysiwyg', '$field_info')");
56
    	// Query start
57
    	$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 ";
58
    	$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_start', '$query_start_code', 'wysiwyg')");
59
    	// Query body
60
    	$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\'";
61
    	$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_body', '$query_body_code', 'wysiwyg')");
62
    	// Query end
63
    	$query_end_code = "";
64
    	$database->query("INSERT INTO ".TABLE_PREFIX."search (name,value,extra) VALUES ('query_end', '$query_end_code', 'wysiwyg')");
65

  
66
    	// Insert blank row (there needs to be at least on row for the search to work)
67
    	$database->query("INSERT INTO ".TABLE_PREFIX."mod_wysiwyg (page_id,section_id) VALUES ('0','0')");
68

  
69

  
70
    }
38
// 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
//    }
71 67
}

Also available in: Unified diff