git-svn-id: file:///home/shish/svn/shimmie2/trunk@1097 7f39781d-f577-437e-ae19-be835c7a54ca
		
			
				
	
	
		
			79 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
class Themelet {
 | 
						|
	public function display_error($page, $title, $message) {
 | 
						|
		$page->set_title($title);
 | 
						|
		$page->set_heading($title);
 | 
						|
		$page->add_block(new NavBlock());
 | 
						|
		$page->add_block(new Block("Error", $message));
 | 
						|
	}
 | 
						|
 | 
						|
 | 
						|
	public function display_permission_denied($page) {
 | 
						|
		header("HTTP/1.0 403 Permission Denied");
 | 
						|
		$this->display_error($page, "Permission Denied", "You do not have permission to access this page");
 | 
						|
	}
 | 
						|
 | 
						|
 | 
						|
	public function build_thumb_html($image, $query=null) {
 | 
						|
		global $config;
 | 
						|
		$h_view_link = make_link("post/view/{$image->id}", $query);
 | 
						|
		$h_tip = html_escape($image->get_tooltip());
 | 
						|
		$h_thumb_link = $image->get_thumb_link();
 | 
						|
		$tsize = get_thumbnail_size($image->width, $image->height);
 | 
						|
		return "<a href='$h_view_link'><img title='$h_tip' alt='$h_tip' ".
 | 
						|
				"width='{$tsize[0]}' height='{$tsize[1]}' src='$h_thumb_link' /></a>";
 | 
						|
	}
 | 
						|
 | 
						|
 | 
						|
	public function display_paginator($page, $base, $query, $page_number, $total_pages) {
 | 
						|
		if($total_pages == 0) $total_pages = 1;
 | 
						|
		$body = $this->build_paginator($page_number, $total_pages, $base, $query);
 | 
						|
		$page->add_block(new Block(null, $body, "main", 90));
 | 
						|
	}
 | 
						|
 | 
						|
	private function gen_page_link($base_url, $query, $page, $name) {
 | 
						|
		$link = make_link("$base_url/$page", $query);
 | 
						|
	    return "<a href='$link'>$name</a>";
 | 
						|
	}
 | 
						|
	
 | 
						|
	private function gen_page_link_block($base_url, $query, $page, $current_page, $name) {
 | 
						|
		$paginator = "";
 | 
						|
	    if($page == $current_page) $paginator .= "<b>$page</b>";
 | 
						|
	    else $paginator .= $this->gen_page_link($base_url, $query, $page, $name);
 | 
						|
	    return $paginator;
 | 
						|
	}
 | 
						|
					
 | 
						|
	private function build_paginator($current_page, $total_pages, $base_url, $query) {
 | 
						|
		$next = $current_page + 1;
 | 
						|
		$prev = $current_page - 1;
 | 
						|
		$rand = rand(1, $total_pages);
 | 
						|
 | 
						|
		$at_start = ($current_page <= 3 || $total_pages <= 3);
 | 
						|
		$at_end = ($current_page >= $total_pages -2);
 | 
						|
 | 
						|
		$first_html  = $at_start ? "" : $this->gen_page_link($base_url, $query, 1,            "1");
 | 
						|
		$prev_html   = $at_start ? "" : $this->gen_page_link($base_url, $query, $prev,        "<<");
 | 
						|
		$next_html   = $at_end   ? "" : $this->gen_page_link($base_url, $query, $next,        ">>");
 | 
						|
		$last_html   = $at_end   ? "" : $this->gen_page_link($base_url, $query, $total_pages, "$total_pages");
 | 
						|
 | 
						|
		$start = $current_page-2 > 1 ? $current_page-2 : 1;
 | 
						|
		$end   = $current_page+2 <= $total_pages ? $current_page+2 : $total_pages;
 | 
						|
 | 
						|
		$pages = array();
 | 
						|
		foreach(range($start, $end) as $i) {
 | 
						|
			$pages[] = $this->gen_page_link_block($base_url, $query, $i, $current_page, $i);
 | 
						|
		}
 | 
						|
		$pages_html = implode(" ", $pages);
 | 
						|
 | 
						|
		if(strlen($first_html) > 0) $pdots = "...";
 | 
						|
		else $pdots = "";
 | 
						|
 | 
						|
		if(strlen($last_html) > 0) $ndots = "...";
 | 
						|
		else $ndots = "";
 | 
						|
 | 
						|
		return "<div id='paginator'>$prev_html $first_html $pdots $pages_html $ndots $last_html $next_html</div>";
 | 
						|
	}
 | 
						|
}
 | 
						|
?>
 |