Project

General

Profile

1
<?php
2

    
3
// $Id: modify.php 698 2008-02-13 21:44:52Z thorn $
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
// Must include code to stop this file being accessed directly
27
if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); }
28

    
29
// check if module language file exists for the language set by the user (e.g. DE, EN)
30
if(!file_exists(WB_PATH .'/modules/menu_link/languages/'.LANGUAGE .'.php')) {
31
	// no module language file exists for the language set by the user, include default module language file EN.php
32
	require_once(WB_PATH .'/modules/menu_link/languages/EN.php');
33
} else {
34
	// a module language file exists for the language defined by the user, load it
35
	require_once(WB_PATH .'/modules/menu_link/languages/'.LANGUAGE .'.php');
36
}
37

    
38
// get target page_id
39
$table = TABLE_PREFIX.'mod_menu_link';
40
$sql_result = $database->query("SELECT * FROM $table WHERE section_id = '$section_id'");
41
$sql_row = $sql_result->fetchRow();
42
$target_page_id = $sql_row['target_page_id'];
43
$extern = $sql_row['extern'];
44
$anchor = $sql_row['anchor'];
45
$sel = ' selected';
46

    
47
// Get list of all visible page-links, except menu_links and actual page
48
$links = array();
49
$table_p = TABLE_PREFIX."pages";
50
$table_s = TABLE_PREFIX."sections";
51
if($query_page = $database->query("SELECT DISTINCT p.* FROM $table_p AS p INNER JOIN $table_s AS s ON p.page_id=s.page_id WHERE s.module != 'menu_link' AND p.page_id != '$page_id' AND parent = '0' ORDER BY position")) {
52
	while($page = $query_page->fetchRow()) {
53
		if($admin->page_is_visible($page)) {
54
			$links[$page['page_id']]='/'.$page['menu_title'];
55
			if($query_subpage = $database->query("SELECT DISTINCT p.* FROM $table_p AS p INNER JOIN $table_s AS s ON p.page_id=s.page_id WHERE s.module != 'menu_link' AND p.page_id != '$page_id' AND root_parent = '{$page['page_id']}' ORDER BY level")) {
56
				while($sub = $query_subpage->fetchRow()) {
57
					if($admin->page_is_visible($sub)) {
58
						$parent_link = (array_key_exists($sub['parent'],$links))?$links[$sub['parent']]:"";
59
						$links[$sub['page_id']]=$parent_link.'/'.$sub['page_title'];
60
					}
61
				}
62
			}
63
		}
64
	}
65
}
66
// Get list of targets (id=... or <a name ...>) from pages in $links
67
$targets = array();
68
$table_mw = TABLE_PREFIX."mod_wysiwyg";
69
$table_s = TABLE_PREFIX."sections";
70
foreach($links as $pid=>$l) {
71
	if($query_section = $database->query("SELECT section_id, module FROM $table_s WHERE page_id = '$pid' ORDER BY position")) {
72
		while($section = $query_section->fetchRow()) {
73
			$targets[$pid][] = "wb_section_{$section['section_id']}";
74
			if($section['module'] == 'wysiwyg') {
75
				if($query_page = $database->query("SELECT content FROM $table_mw WHERE section_id = '{$section['section_id']}' LIMIT 1")) {
76
					$page = $query_page->fetchRow();
77
					if(preg_match_all('/<(?:[^>]+id|\s*a[^>]+name)\s*=\s*"(.*)"/iuU',$page['content'], $match)) {
78
						foreach($match[1] AS $t) {
79
							$targets[$pid][] = $t;
80
						}
81
					}
82
				}
83
			}
84
		}
85
	}
86
}
87
// get target-window for actual page
88
$table = TABLE_PREFIX."pages";
89
$query_page = $database->query("SELECT target FROM $table WHERE page_id = '$page_id'");
90
$page = $query_page->fetchRow();
91
$target = $page['target'];
92

    
93

    
94
// script for target-select-box
95
?>
96
<script type="text/javascript">
97
	function populate() {
98
		o=document.getElementById('page_link');
99
		d=document.getElementById('page_target');
100
		e=document.getElementById('extern');
101
		if(!d){return;}			
102
		var mitems=new Array();
103
		mitems['0']=[' ','0'];
104
		mitems['-1']=[' ','0'];
105
		<?php
106
		foreach($links AS $pid=>$link) {
107
			$str="mitems['$pid']=[";
108
			$str.="' ',";
109
			$str.="'0',";
110
			if(is_array($targets) && is_array($targets[$pid])) {
111
				foreach($targets[$pid] AS $value) {
112
					$str.="'#$value',";
113
					$str.="'$value',";
114
				}
115
				$str=rtrim($str, ',');
116
				$str.="];\n";
117
			}
118
			echo $str;
119
		}
120
		?>
121
		d.options.length=0;
122
		cur=mitems[o.options[o.selectedIndex].value];
123
		if(!cur){return;}
124
		d.options.length=cur.length/2;
125
		j=0;
126
		for(var i=0;i<cur.length;i=i+2)
127
		{
128
			d.options[j].text=cur[i];
129
			d.options[j++].value=cur[i+1];
130
		}
131
		
132
		if(o.value=='-1') {
133
			e.disabled = false;
134
		} else {
135
			e.disabled = true;
136
		}
137
	}
138
</script>
139

    
140
<form name="menulink" action="<?php echo WB_URL ?>/modules/menu_link/save.php" method="post">
141
<input type="hidden" name="page_id" value="<?php echo $page_id ?>" />
142
<input type="hidden" name="section_id" value="<?php echo $section_id ?>" />
143
<table cellpadding="0" cellspacing="0" border="0" width="100%">
144
<tr>
145
	<td>
146
		<?php echo $TEXT['LINK'].':' ?>
147
	</td>
148
	<td>
149
		<select name="page_link" id="page_link" onchange="populate()" style="width:250px;" />
150
			<option value="0"<?php echo $target_page_id=='0'?$sel:''?>><?php echo $TEXT['PLEASE_SELECT']; ?></option>
151
			<option value="-1"<?php echo $target_page_id=='-1'?$sel:''?>><?php echo $MOD_MENU_LINK['EXTERNAL_LINK']; ?></option>
152
			<?php foreach($links AS $pid=>$link) {
153
				echo "<option value=\"$pid\" ".($target_page_id==$pid?$sel:'').">$link</option>";
154
			} ?>
155
		</select>
156
		&nbsp;
157
		<input type="text" name="extern" id="extern" value="<?php echo $extern; ?>" style="width:250px;" <?php if($target_page_id!='-1') echo 'disabled="disabled"'; ?> />
158
	</td>
159
</tr>
160
<tr>
161
	<td>
162
		<?php echo $TEXT['ANCHOR'].':' ?>
163
	</td>
164
	<td>
165
		<select name="page_target" id="page_target" onfocus="populate()" style="width:250px;" />
166
			<option value="<?php echo $anchor ?>" selected><?php echo $anchor=='0'?' ':'#'.$anchor ?></option>
167
		</select>
168
	</td>
169
</tr>
170
<tr>
171
	<td>
172
		<?php echo $TEXT['TARGET'].':' ?>
173
	</td>
174
	<td>
175
		<select name="target" style="width:250px;" />
176
			<option value="_blank"<?php if($target=='_blank') echo ' selected'; ?>><?php echo $TEXT['NEW_WINDOW'] ?></option>
177
			<option value="_self"<?php if($target=='_self') echo ' selected'; ?>><?php echo $TEXT['SAME_WINDOW'] ?></option>
178
			<option value="_top"<?php if($target=='_top') echo ' selected'; ?>><?php echo $TEXT['TOP_FRAME'] ?></option>
179
		</select>
180
	</td>
181
</tr>
182
</table>
183

    
184
<br />
185

    
186
<table cellpadding="0" cellspacing="0" border="0" width="100%">
187
<tr>
188
	<td align="left">
189
		<input type="submit" value="<?php echo $TEXT['SAVE'] ?>" style="width: 100px; margin-top: 5px;" />
190
	</td>
191
	<td align="right">
192
		</form>
193
		<input type="button" value="<?php echo $TEXT['CANCEL'] ?>" onclick="javascript: window.location = 'index.php';" style="width: 100px; margin-top: 5px;" />
194
	</td>
195
</tr>
196
</table>
197

    
198
</form>
199

    
(6-6/9)