52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| class RandomListTheme extends Themelet {
 | |
| 	protected $search_terms;
 | |
| 
 | |
| 	/**
 | |
| 	 * #param string[] $search_terms
 | |
| 	 */
 | |
| 	public function set_page(array $search_terms) {
 | |
| 		$this->search_terms = $search_terms;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * #param Image[] $images
 | |
| 	 */
 | |
| 	public function display_page(Page $page, array $images) {
 | |
| 		$page->title = "Random Images";
 | |
| 
 | |
| 		$html = "<b>Refresh the page to view more images</b>";
 | |
| 		if (count($images)) {
 | |
| 			$html .= "<div class='shm-image-list'>";
 | |
| 
 | |
| 			foreach ($images as $image)
 | |
| 				$html .= $this->build_thumb_html($image);
 | |
| 
 | |
| 			$html .= "</div>";
 | |
| 		} else {
 | |
| 			$html .= "<br/><br/>No images were found to match the search criteria";
 | |
| 		}
 | |
| 
 | |
| 		$page->add_block(new Block("Random Images", $html));
 | |
| 
 | |
| 		$nav = $this->build_navigation($this->search_terms);
 | |
| 		$page->add_block(new Block("Navigation", $nav, "left", 0));
 | |
| 	}
 | |
| 
 | |
| 	protected function build_navigation(array $search_terms): string {
 | |
| 		$h_search_string = html_escape(Tag::implode($search_terms));
 | |
| 		$h_search_link = make_link("random");
 | |
| 		$h_search = "
 | |
| 			<p><form action='$h_search_link' method='GET'>
 | |
| 				<input type='search' name='search' value='$h_search_string' placeholder='Search random list' class='autocomplete_tags' autocomplete='off' />
 | |
| 				<input type='hidden' name='q' value='/random'>
 | |
| 				<input type='submit' value='Find' style='display: none;' />
 | |
| 			</form>
 | |
| 		";
 | |
| 
 | |
| 		return $h_search;
 | |
| 	}
 | |
| }
 | |
| 
 |