1 |
682
|
doc
|
<?php
|
2 |
|
|
|
3 |
|
|
// $Id$
|
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 |
698
|
thorn
|
|
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 |
682
|
doc
|
|
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 |
698
|
thorn
|
$target_page_id = $sql_row['target_page_id'];
|
43 |
|
|
$extern = $sql_row['extern'];
|
44 |
682
|
doc
|
$anchor = $sql_row['anchor'];
|
45 |
|
|
$sel = ' selected';
|
46 |
|
|
|
47 |
755
|
thorn
|
// Get list of all visible pages, except actual one
|
48 |
682
|
doc
|
$links = array();
|
49 |
|
|
$table_p = TABLE_PREFIX."pages";
|
50 |
755
|
thorn
|
if($query_page = $database->query("SELECT * FROM $table_p WHERE parent = '0' ORDER BY position")) {
|
51 |
|
|
while($page = $query_page->fetchRow()) {
|
52 |
|
|
$all_links[$page['page_id']]='/'.$page['menu_title'];
|
53 |
|
|
if($admin->page_is_visible($page) && $page['page_id']!=$page_id) {
|
54 |
|
|
$links[$page['page_id']]='/'.$page['menu_title'];
|
55 |
|
|
}
|
56 |
|
|
if($query_subpage = $database->query("SELECT * FROM $table_p WHERE page_id != '$page_id' AND root_parent = '{$page['page_id']}' ORDER BY level")) {
|
57 |
|
|
while($sub = $query_subpage->fetchRow()) {
|
58 |
|
|
if($admin->page_is_visible($sub)) {
|
59 |
|
|
$parent_link = (array_key_exists($sub['parent'],$all_links))?$all_links[$sub['parent']]:"";
|
60 |
|
|
$links[$sub['page_id']]=$parent_link.'/'.$sub['page_title'];
|
61 |
682
|
doc
|
}
|
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 |
755
|
thorn
|
while($section = $query_section->fetchRow()) {
|
73 |
|
|
// get section-anchor
|
74 |
682
|
doc
|
$targets[$pid][] = "wb_section_{$section['section_id']}";
|
75 |
|
|
if($section['module'] == 'wysiwyg') {
|
76 |
|
|
if($query_page = $database->query("SELECT content FROM $table_mw WHERE section_id = '{$section['section_id']}' LIMIT 1")) {
|
77 |
|
|
$page = $query_page->fetchRow();
|
78 |
|
|
if(preg_match_all('/<(?:[^>]+id|\s*a[^>]+name)\s*=\s*"(.*)"/iuU',$page['content'], $match)) {
|
79 |
|
|
foreach($match[1] AS $t) {
|
80 |
|
|
$targets[$pid][] = $t;
|
81 |
|
|
}
|
82 |
|
|
}
|
83 |
|
|
}
|
84 |
|
|
}
|
85 |
|
|
}
|
86 |
|
|
}
|
87 |
|
|
}
|
88 |
|
|
// get target-window for actual page
|
89 |
|
|
$table = TABLE_PREFIX."pages";
|
90 |
|
|
$query_page = $database->query("SELECT target FROM $table WHERE page_id = '$page_id'");
|
91 |
|
|
$page = $query_page->fetchRow();
|
92 |
|
|
$target = $page['target'];
|
93 |
|
|
|
94 |
|
|
|
95 |
|
|
// script for target-select-box
|
96 |
|
|
?>
|
97 |
|
|
<script type="text/javascript">
|
98 |
698
|
thorn
|
function populate() {
|
99 |
682
|
doc
|
o=document.getElementById('page_link');
|
100 |
698
|
thorn
|
d=document.getElementById('page_target');
|
101 |
|
|
e=document.getElementById('extern');
|
102 |
682
|
doc
|
if(!d){return;}
|
103 |
|
|
var mitems=new Array();
|
104 |
|
|
mitems['0']=[' ','0'];
|
105 |
698
|
thorn
|
mitems['-1']=[' ','0'];
|
106 |
682
|
doc
|
<?php
|
107 |
|
|
foreach($links AS $pid=>$link) {
|
108 |
|
|
$str="mitems['$pid']=[";
|
109 |
|
|
$str.="' ',";
|
110 |
|
|
$str.="'0',";
|
111 |
|
|
if(is_array($targets) && is_array($targets[$pid])) {
|
112 |
|
|
foreach($targets[$pid] AS $value) {
|
113 |
|
|
$str.="'#$value',";
|
114 |
|
|
$str.="'$value',";
|
115 |
|
|
}
|
116 |
|
|
$str=rtrim($str, ',');
|
117 |
|
|
$str.="];\n";
|
118 |
|
|
}
|
119 |
|
|
echo $str;
|
120 |
|
|
}
|
121 |
|
|
?>
|
122 |
|
|
d.options.length=0;
|
123 |
|
|
cur=mitems[o.options[o.selectedIndex].value];
|
124 |
|
|
if(!cur){return;}
|
125 |
|
|
d.options.length=cur.length/2;
|
126 |
|
|
j=0;
|
127 |
|
|
for(var i=0;i<cur.length;i=i+2)
|
128 |
|
|
{
|
129 |
|
|
d.options[j].text=cur[i];
|
130 |
|
|
d.options[j++].value=cur[i+1];
|
131 |
698
|
thorn
|
}
|
132 |
|
|
|
133 |
|
|
if(o.value=='-1') {
|
134 |
|
|
e.disabled = false;
|
135 |
|
|
} else {
|
136 |
|
|
e.disabled = true;
|
137 |
|
|
}
|
138 |
|
|
}
|
139 |
682
|
doc
|
</script>
|
140 |
|
|
|
141 |
698
|
thorn
|
<form name="menulink" action="<?php echo WB_URL ?>/modules/menu_link/save.php" method="post">
|
142 |
682
|
doc
|
<input type="hidden" name="page_id" value="<?php echo $page_id ?>" />
|
143 |
|
|
<input type="hidden" name="section_id" value="<?php echo $section_id ?>" />
|
144 |
|
|
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
145 |
|
|
<tr>
|
146 |
|
|
<td>
|
147 |
|
|
<?php echo $TEXT['LINK'].':' ?>
|
148 |
|
|
</td>
|
149 |
|
|
<td>
|
150 |
|
|
<select name="page_link" id="page_link" onchange="populate()" style="width:250px;" />
|
151 |
698
|
thorn
|
<option value="0"<?php echo $target_page_id=='0'?$sel:''?>><?php echo $TEXT['PLEASE_SELECT']; ?></option>
|
152 |
|
|
<option value="-1"<?php echo $target_page_id=='-1'?$sel:''?>><?php echo $MOD_MENU_LINK['EXTERNAL_LINK']; ?></option>
|
153 |
682
|
doc
|
<?php foreach($links AS $pid=>$link) {
|
154 |
|
|
echo "<option value=\"$pid\" ".($target_page_id==$pid?$sel:'').">$link</option>";
|
155 |
|
|
} ?>
|
156 |
698
|
thorn
|
</select>
|
157 |
|
|
|
158 |
|
|
<input type="text" name="extern" id="extern" value="<?php echo $extern; ?>" style="width:250px;" <?php if($target_page_id!='-1') echo 'disabled="disabled"'; ?> />
|
159 |
682
|
doc
|
</td>
|
160 |
|
|
</tr>
|
161 |
|
|
<tr>
|
162 |
|
|
<td>
|
163 |
|
|
<?php echo $TEXT['ANCHOR'].':' ?>
|
164 |
|
|
</td>
|
165 |
|
|
<td>
|
166 |
|
|
<select name="page_target" id="page_target" onfocus="populate()" style="width:250px;" />
|
167 |
|
|
<option value="<?php echo $anchor ?>" selected><?php echo $anchor=='0'?' ':'#'.$anchor ?></option>
|
168 |
|
|
</select>
|
169 |
|
|
</td>
|
170 |
|
|
</tr>
|
171 |
|
|
<tr>
|
172 |
|
|
<td>
|
173 |
|
|
<?php echo $TEXT['TARGET'].':' ?>
|
174 |
|
|
</td>
|
175 |
|
|
<td>
|
176 |
|
|
<select name="target" style="width:250px;" />
|
177 |
|
|
<option value="_blank"<?php if($target=='_blank') echo ' selected'; ?>><?php echo $TEXT['NEW_WINDOW'] ?></option>
|
178 |
|
|
<option value="_self"<?php if($target=='_self') echo ' selected'; ?>><?php echo $TEXT['SAME_WINDOW'] ?></option>
|
179 |
|
|
<option value="_top"<?php if($target=='_top') echo ' selected'; ?>><?php echo $TEXT['TOP_FRAME'] ?></option>
|
180 |
|
|
</select>
|
181 |
|
|
</td>
|
182 |
|
|
</tr>
|
183 |
|
|
</table>
|
184 |
|
|
|
185 |
|
|
<br />
|
186 |
|
|
|
187 |
|
|
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
188 |
|
|
<tr>
|
189 |
|
|
<td align="left">
|
190 |
|
|
<input type="submit" value="<?php echo $TEXT['SAVE'] ?>" style="width: 100px; margin-top: 5px;" />
|
191 |
|
|
</td>
|
192 |
|
|
<td align="right">
|
193 |
|
|
</form>
|
194 |
|
|
<input type="button" value="<?php echo $TEXT['CANCEL'] ?>" onclick="javascript: window.location = 'index.php';" style="width: 100px; margin-top: 5px;" />
|
195 |
|
|
</td>
|
196 |
|
|
</tr>
|
197 |
|
|
</table>
|
198 |
|
|
|
199 |
|
|
</form>
|