263 lines
		
	
	
		
			8.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			263 lines
		
	
	
		
			8.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
* Name: Lite Theme
 | 
						|
* Author: Zach Hall <zach@sosguy.net>
 | 
						|
* Link: http://seemslegit.com
 | 
						|
* License: GPLv2
 | 
						|
* Description: A mashup of Default, Danbooru, the interface on qwebirc, and
 | 
						|
* 	       some other sites, packaged in a light blue color.
 | 
						|
*/
 | 
						|
class Layout {
 | 
						|
	/**
 | 
						|
	 * turns the Page into HTML
 | 
						|
	 */
 | 
						|
	public function display_page(Page $page) {
 | 
						|
		global $config, $user;
 | 
						|
 | 
						|
		$theme_name = $config->get_string('theme', 'lite');
 | 
						|
		$site_name = $config->get_string('title');
 | 
						|
		$data_href = get_base_href();
 | 
						|
		$contact_link = $config->get_string('contact_link');
 | 
						|
 | 
						|
		$header_html = "";
 | 
						|
		foreach($page->headers as $line) {
 | 
						|
			$header_html .= "\t\t$line\n";
 | 
						|
		}
 | 
						|
		
 | 
						|
		$menu = "<div class='menu'>
 | 
						|
			<script type='text/javascript' src='$data_href/themes/$theme_name/wz_tooltip.js'></script>
 | 
						|
			<a href='".make_link()."' onmouseover='Tip('Home', BGCOLOR, '#C3D2E0', FADEIN, 100)' onmouseout='UnTip()'><img src='$data_href/favicon.ico' style='position: relative; top: 3px;'></a>
 | 
						|
			<b>{$site_name}</b> ";
 | 
						|
		
 | 
						|
		// Custom links: These appear on the menu.
 | 
						|
		$custom_links = "";
 | 
						|
		if($user->is_anonymous()) {
 | 
						|
			$custom_links .= $this->navlinks(make_link('user_admin/login'), "Account", array("user", "user_admin", "setup", "admin", "profile"));
 | 
						|
		} else {
 | 
						|
			$custom_links .= $this->navlinks(make_link('user'), "Account", array("user", "setup", "user_admin", "admin", "profile"));
 | 
						|
		}
 | 
						|
		$custom_links .= $this->navlinks(make_link('post/list'), "Posts", array("post", "view"));
 | 
						|
		$custom_links .= $this->navlinks(make_link('comment/list'), "Comments", array("comment"));
 | 
						|
		$custom_links .= $this->navlinks(make_link('tags'), "Tags", array("tags"));
 | 
						|
		$custom_links .= $this->navlinks(make_link('upload'), "Upload", array("upload"));
 | 
						|
		if(class_exists("Wiki")) {
 | 
						|
			$custom_links .= $this->navlinks(make_link('wiki/rules'), "Rules", array("wiki/rules"));
 | 
						|
			$custom_links .= $this->navlinks(make_link('wiki'), "Wiki", array("wiki"));
 | 
						|
		}
 | 
						|
		$menu .= "$custom_links</div>";
 | 
						|
		
 | 
						|
		$left_block_html = "";
 | 
						|
		$main_block_html = "";
 | 
						|
		$sub_block_html  = "";
 | 
						|
		$user_block_html = "";
 | 
						|
 | 
						|
		foreach($page->blocks as $block) {
 | 
						|
			switch($block->section) {
 | 
						|
				case "left":
 | 
						|
					$left_block_html .= $this->block_to_html($block, true, "left");
 | 
						|
					break;
 | 
						|
				case "main":
 | 
						|
					$main_block_html .= $this->block_to_html($block, false, "main");
 | 
						|
					break;
 | 
						|
				case "user":
 | 
						|
					$user_block_html .= $block->body;
 | 
						|
					break;
 | 
						|
				case "subheading":
 | 
						|
					$sub_block_html .= $this->block_to_html($block, false, "main");
 | 
						|
					break;
 | 
						|
				default:
 | 
						|
					print "<p>error: {$block->header} using an unknown section ({$block->section})";
 | 
						|
					break;
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		$custom_sublinks = "<div class='sbar'>";
 | 
						|
		$cs = null;
 | 
						|
		// hack
 | 
						|
		global $user;
 | 
						|
		$username = url_escape($user->name);
 | 
						|
		// hack
 | 
						|
		$qp = _get_query_parts();
 | 
						|
		$hw = class_exists("Wiki");
 | 
						|
		// php sucks
 | 
						|
		switch($qp[0]) {
 | 
						|
			default:
 | 
						|
				$cs = $user_block_html;
 | 
						|
				break;
 | 
						|
			case "":
 | 
						|
				# FIXME: this assumes that the front page is
 | 
						|
				# post/list; in 99% of case it will either be
 | 
						|
				# post/list or home, and in the latter case
 | 
						|
				# the subnav links aren't shown, but it would
 | 
						|
				# be nice to be correct
 | 
						|
			case "post":
 | 
						|
				$cs .= "<a class='tab' href='".make_link('post/list')."'>All</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link("post/list/favorited_by=$username/1")."'>My Favorites</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link('rss/images')."'>Feed</a>";
 | 
						|
				if($hw) $cs .= "<a class='tab' href='".make_link("wiki/posts")."'>Help</a>";
 | 
						|
				break;
 | 
						|
			case "comment":
 | 
						|
				$cs .= "<a class='tab' href='".make_link('comment/list')."'>All</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link('rss/comments')."'>Feed</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link("ext_doc/comment")."'>Help</a>";
 | 
						|
				break;
 | 
						|
			case "pool":
 | 
						|
				$cs .= "<a class='tab' href='".make_link('pool/list')."'>List</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link("pool/new")."'>Create</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link("pool/updated")."'>Changes</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link("ext_doc/pools")."'>Help</a>";
 | 
						|
				break;
 | 
						|
			case "wiki":
 | 
						|
				$cs .= "<a class='tab' href='".make_link('wiki')."'>Index</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link("wiki/rules")."'>Rules</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link("ext_doc/wiki")."'>Help</a>";
 | 
						|
				break;
 | 
						|
			case "tags":
 | 
						|
			case "alias":
 | 
						|
				$cs .= "<a class='tab' href='".make_link('tags/map')."'>Map</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link('tags/alphabetic')."'>Alphabetic</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link('tags/popularity')."'>Popularity</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link('tags/categories')."'>Categories</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link('alias/list')."'>Aliases</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link("ext_doc/tag_edit")."'>Help</a>";
 | 
						|
				break;
 | 
						|
			case "upload":
 | 
						|
				if($hw) $cs .= "<a class='tab' href='".make_link("wiki/upload_guidelines")."'>Guidelines</a>";
 | 
						|
				break;
 | 
						|
			case "random":
 | 
						|
				$cs .= "<a class='tab' href='".make_link('random/view')."'>Shuffle</a>";
 | 
						|
				$cs .= "<a class='tab' href='".make_link('random/download')."'>Download</a>";
 | 
						|
				break;
 | 
						|
			case "featured":
 | 
						|
				$cs .= "<a class='tab' href='".make_link('featured/download')."'>Download</a>";
 | 
						|
				break;
 | 
						|
		}
 | 
						|
		if($cs == "") {$custom_sublinks = "";} else {
 | 
						|
		$custom_sublinks .= "$cs</div>";}
 | 
						|
 | 
						|
 | 
						|
		$debug = get_debug_info();
 | 
						|
 | 
						|
		$contact = empty($contact_link) ? "" : "<br><a href='$contact_link'>Contact</a>";
 | 
						|
		$subheading = empty($page->subheading) ? "" : "<div id='subtitle'>{$page->subheading}</div>";
 | 
						|
 | 
						|
		$wrapper = "";
 | 
						|
		if(strlen($page->heading) > 100) {
 | 
						|
			$wrapper = ' style="height: 3em; overflow: auto;"';
 | 
						|
		}
 | 
						|
		if($page->left_enabled==false) {
 | 
						|
			$left_block_html = "";
 | 
						|
			$main_block_html = "<div id='body_noleft'>$main_block_html</div>";
 | 
						|
		} else {
 | 
						|
			$left_block_html = "<div id='nav'>$left_block_html</div>";
 | 
						|
			$main_block_html = "<div id='body'>$main_block_html</div>";
 | 
						|
		}
 | 
						|
 | 
						|
		print <<<EOD
 | 
						|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
 | 
						|
<html>
 | 
						|
	<head>
 | 
						|
		<title>{$page->title}</title>
 | 
						|
		<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
 | 
						|
		<link rel="stylesheet" href="$data_href/themes/$theme_name/style.css" type="text/css">
 | 
						|
		$header_html
 | 
						|
	</head>
 | 
						|
 | 
						|
	<body>
 | 
						|
		$menu
 | 
						|
		$custom_sublinks
 | 
						|
		
 | 
						|
		$sub_block_html
 | 
						|
 | 
						|
		$left_block_html
 | 
						|
		$main_block_html
 | 
						|
		
 | 
						|
 | 
						|
		<div id="footer">
 | 
						|
			Images © their respective owners,
 | 
						|
			<a href="http://code.shishnet.org/shimmie2/">Shimmie</a> ©
 | 
						|
			<a href="http://www.shishnet.org/">Shish</a> & Co 2007-2010,
 | 
						|
			based on the Danbooru concept.<br />
 | 
						|
			Lite Theme by <a href="http://seemslegit.com">Zach</a>
 | 
						|
			$debug
 | 
						|
			$contact
 | 
						|
		</div>
 | 
						|
	</body>
 | 
						|
</html>
 | 
						|
EOD;
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * A handy function which does exactly what it says in the method name
 | 
						|
	 */
 | 
						|
	private function block_to_html($block, $hidable=false, $salt="") {
 | 
						|
		$h = $block->header;
 | 
						|
		$b = $block->body;
 | 
						|
		$html = "";
 | 
						|
		$i = str_replace(' ', '_', $h) . $salt;
 | 
						|
		if($hidable) $html .= "
 | 
						|
			<script><!--
 | 
						|
			$(document).ready(function() {
 | 
						|
				$(\"#$i-toggle\").click(function() {
 | 
						|
					$(\"#$i\").slideToggle(\"slow\", function() {
 | 
						|
						if($(\"#$i\").is(\":hidden\")) {
 | 
						|
							$.cookie(\"$i-hidden\", 'true', {path: '/'});
 | 
						|
						}
 | 
						|
						else {
 | 
						|
							$.cookie(\"$i-hidden\", 'false', {path: '/'});
 | 
						|
						}
 | 
						|
					});
 | 
						|
				});
 | 
						|
				if($.cookie(\"$i-hidden\") == 'true') {
 | 
						|
					$(\"#$i\").hide();
 | 
						|
				}
 | 
						|
			});
 | 
						|
			//--></script>
 | 
						|
		";
 | 
						|
		if(!is_null($h)) {
 | 
						|
			if($salt == "main") {
 | 
						|
				$html .= "<div class='maintop navside tab' id='$i-toggle'>$h</div>";
 | 
						|
			} else {
 | 
						|
				$html .= "<div class='navtop navside tab' id='$i-toggle'>$h</div>";
 | 
						|
			}
 | 
						|
			}
 | 
						|
		if(!is_null($b)) {
 | 
						|
			//if(strpos($b, "rrcontent")) {
 | 
						|
			if($salt =="main") {
 | 
						|
				$html .= "<div class='blockbody' id='$i'>$b</div>";
 | 
						|
			}
 | 
						|
			else {
 | 
						|
				$html .= "
 | 
						|
					<div class='navside tab' id='$i'>$b</div>
 | 
						|
				";
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		return $html;
 | 
						|
	}
 | 
						|
	
 | 
						|
	private function navlinks($link, $desc, $pages_matched) {
 | 
						|
	/**
 | 
						|
	 * Woo! We can actually SEE THE CURRENT PAGE!! (well... see it highlighted in the menu.)
 | 
						|
	 */
 | 
						|
		$html = null;
 | 
						|
		$url = $_GET['q'];
 | 
						|
 | 
						|
		$re1='.*?';
 | 
						|
		$re2='((?:[a-z][a-z]+))';
 | 
						|
 | 
						|
		if ($c=preg_match_all ("/".$re1.$re2."/is", $url, $matches)) {
 | 
						|
			$url=$matches[1][0];
 | 
						|
		}
 | 
						|
		
 | 
						|
		for($i=0;$i<count($pages_matched);$i++) {
 | 
						|
			if($url == $pages_matched[$i]) {
 | 
						|
				$html = "<a class='tab-selected' href='$link'>$desc</a>";
 | 
						|
			}
 | 
						|
		}
 | 
						|
		if(is_null($html)) {$html = "<a class='tab' href='$link'>$desc</a>";}
 | 
						|
		return $html;
 | 
						|
	}
 | 
						|
}
 | 
						|
?>
 |