94 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| class ViewImageTheme extends Themelet {
 | |
| 	/*
 | |
| 	 * Build a page showing $image and some info about it
 | |
| 	 */
 | |
| 	public function display_page(Image $image, $editor_parts) {
 | |
| 		global $page;
 | |
| 
 | |
| 		$h_metatags = str_replace(" ", ", ", html_escape($image->get_tag_list()));
 | |
| 
 | |
| 		$page->set_title("Image {$image->id}: ".html_escape($image->get_tag_list()));
 | |
| 		$page->add_html_header("<meta name=\"keywords\" content=\"$h_metatags\">");
 | |
| 		$page->add_html_header("<meta property=\"og:title\" content=\"$h_metatags\">");
 | |
| 		$page->add_html_header("<meta property=\"og:type\" content=\"article\">");
 | |
| 		$page->add_html_header("<meta property=\"og:image\" content=\"".make_http($image->get_thumb_link())."\">");
 | |
| 		$page->add_html_header("<meta property=\"og:url\" content=\"".make_http(make_link("post/view/{$image->id}"))."\">");
 | |
| 		$page->set_heading(html_escape($image->get_tag_list()));
 | |
| 		$page->add_block(new Block("Navigation", $this->build_navigation($image), "left", 0));
 | |
| 		$page->add_block(new Block(null, $this->build_info($image, $editor_parts), "main", 10));
 | |
| 		//$page->add_block(new Block(null, $this->build_pin($image), "main", 11));
 | |
| 	}
 | |
| 
 | |
| 	public function display_admin_block(Page $page, $parts) {
 | |
| 		if(count($parts) > 0) {
 | |
| 			$page->add_block(new Block("Image Controls", join("<br>", $parts), "left", 50));
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 
 | |
| 	protected function build_pin(Image $image) {
 | |
| 		global $database;
 | |
| 
 | |
| 		if(isset($_GET['search'])) {
 | |
| 			$search_terms = explode(' ', $_GET['search']);
 | |
| 			$query = "search=".url_escape($_GET['search']);
 | |
| 		}
 | |
| 		else {
 | |
| 			$search_terms = array();
 | |
| 			$query = null;
 | |
| 		}
 | |
| 
 | |
| 		$h_prev = "<a id='prevlink' href='".make_link("post/prev/{$image->id}", $query)."'>Prev</a>";
 | |
| 		$h_index = "<a href='".make_link()."'>Index</a>";
 | |
| 		$h_next = "<a id='nextlink' href='".make_link("post/next/{$image->id}", $query)."'>Next</a>";
 | |
| 
 | |
| 		return "$h_prev | $h_index | $h_next";
 | |
| 	}
 | |
| 
 | |
| 	protected function build_navigation(Image $image) {
 | |
| 		$h_pin = $this->build_pin($image);
 | |
| 		$h_search = "
 | |
| 			<p><form action='".make_link()."' method='GET'>
 | |
| 				<input type='hidden' name='q' value='/post/list'>
 | |
| 				<input placeholder='Search' name='search' type='text'>
 | |
| 				<input type='submit' value='Find' style='display: none;'>
 | |
| 			</form>
 | |
| 		";
 | |
| 
 | |
| 		return "$h_pin<br>$h_search";
 | |
| 	}
 | |
| 
 | |
| 	protected function build_info(Image $image, $editor_parts) {
 | |
| 		global $user;
 | |
| 
 | |
| 		if(count($editor_parts) == 0) return ($image->is_locked() ? "<br>[Image Locked]" : "");
 | |
| 
 | |
| 		$html = make_form(make_link("post/set"))."
 | |
| 					<input type='hidden' name='image_id' value='{$image->id}'>
 | |
| 					<table style='width: 500px;' class='image_info'>
 | |
| 		";
 | |
| 		foreach($editor_parts as $part) {
 | |
| 			$html .= $part;
 | |
| 		}
 | |
| 		if(
 | |
| 			(!$image->is_locked() || $user->can("lock_image")) &&
 | |
| 			$user->can("edit_image_tag")
 | |
| 		) {
 | |
| 			$html .= "
 | |
| 						<tr><td colspan='4'>
 | |
| 							<input class='view' type='button' value='Edit' onclick='$(\".view\").hide(); $(\".edit\").show();'>
 | |
| 							<input class='edit' type='submit' value='Set'>
 | |
| 						</td></tr>
 | |
| 			";
 | |
| 		}
 | |
| 		$html .= "
 | |
| 					</table>
 | |
| 				</form>
 | |
| 		";
 | |
| 		return $html;
 | |
| 	}
 | |
| }
 | |
| ?>
 |