Browse Source

Categories theme v0.2.1 (Frame removal works correctly.)

pull/40/head
Michael D. Reiley 13 years ago
parent
commit
a59b915b0a
  1. 2
      templates/themes/categories/info.php
  2. 12
      templates/themes/categories/theme.php

2
templates/themes/categories/info.php

@ -8,7 +8,7 @@
'Group-ordered, category-aware modification of the Frameset theme, with removable sidebar frame.
Requires $config[\'boards\'] and $config[\'categories\'].';
$theme['version'] = 'v0.2';
$theme['version'] = 'v0.2.1';
// Theme configuration
$theme['config'] = Array();

12
templates/themes/categories/theme.php

@ -39,6 +39,11 @@
. 'iframe#main{border-left:1px solid black;left:15%;top:0;width:85%}'
. '</style>'
. '<title>' . $settings['title'] . '</title>'
. '<script type="text/javascript">'
. 'function removeFrames() {'
. 'window.location = document.getElementById("main").contentWindow.location.href'
. '}'
. '</script>'
. '</head><body>'
// Sidebar
. '<iframe src="sidebar.html" id="sidebar" name="sidebar"></iframe>'
@ -109,16 +114,11 @@
. '</style>'
. '<base target="main" />'
. '<title>' . $settings['title'] . '</title>'
. '<script type="text/javascript">'
. 'function removeFrames() {'
. 'parent.window.location = "' . $config['root'] . 'news.html"'
. '}'
. '</script>'
. '</head><body>';
$body .= '<fieldset><legend>' . $settings['title'] . '</legend><ul>' .
'<li><a class="system" href="news.html">[News]</a></li>' .
'<li><a class="system" href="javascript:removeFrames()">[Remove Frames]</a></li>' .
'<li><a class="system" href="javascript:parent.removeFrames()">[Remove Frames]</a></li>' .
'</ul></fieldset>';
for($cat = 0; $cat < count($config['categories']); $cat++) {

Loading…
Cancel
Save