105 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php declare(strict_types=1);
 | 
						|
/**
 | 
						|
 * A class to turn a Page data structure into a blob of HTML
 | 
						|
 */
 | 
						|
class Layout
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * turns the Page into HTML
 | 
						|
     */
 | 
						|
    public function display_page(Page $page)
 | 
						|
    {
 | 
						|
        global $config;
 | 
						|
 | 
						|
        //$theme_name = $config->get_string(SetupConfig::THEME, 'default');
 | 
						|
        $site_name = $config->get_string(SetupConfig::TITLE);
 | 
						|
        $data_href = get_base_href();
 | 
						|
        $main_page = $config->get_string(SetupConfig::MAIN_PAGE);
 | 
						|
        $contact_link = contact_link();
 | 
						|
        $header_html = $page->get_all_html_headers();
 | 
						|
 | 
						|
        $left_block_html = "";
 | 
						|
        $main_block_html = "";
 | 
						|
        $head_block_html = "";
 | 
						|
        $sub_block_html = "";
 | 
						|
 | 
						|
        foreach ($page->blocks as $block) {
 | 
						|
            switch ($block->section) {
 | 
						|
                case "left":
 | 
						|
                    $left_block_html .= $block->get_html(true);
 | 
						|
                    break;
 | 
						|
                case "head":
 | 
						|
                    $head_block_html .= "<td width='250'><small>".$block->get_html(false)."</small></td>";
 | 
						|
                    break;
 | 
						|
                case "main":
 | 
						|
                    $main_block_html .= $block->get_html(false);
 | 
						|
                    break;
 | 
						|
                case "subheading":
 | 
						|
                    $sub_block_html .= $block->body; // $this->block_to_html($block, true);
 | 
						|
                    break;
 | 
						|
                default:
 | 
						|
                    print "<p>error: {$block->header} using an unknown section ({$block->section})";
 | 
						|
                    break;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        $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;"';
 | 
						|
        }
 | 
						|
        */
 | 
						|
 | 
						|
        $flash_html = $page->flash ? "<b id='flash'>".nl2br(html_escape(implode("\n", $page->flash)))."</b>" : "";
 | 
						|
 | 
						|
        print <<<EOD
 | 
						|
<!doctype html>
 | 
						|
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
 | 
						|
<!--[if IE 7]>    <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
 | 
						|
<!--[if IE 8]>    <html class="no-js lt-ie9" lang="en"> <![endif]-->
 | 
						|
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
 | 
						|
	<head>
 | 
						|
		<title>{$page->title}</title>
 | 
						|
$header_html
 | 
						|
	</head>
 | 
						|
 | 
						|
	<body>
 | 
						|
		<header>
 | 
						|
			<table id="header" class="bgtop" width="100%" height="113px">
 | 
						|
				<tr>
 | 
						|
					<td><center>
 | 
						|
						<h1><a href="$data_href/$main_page">{$site_name}</a></h1>
 | 
						|
						<p>[Navigation links go here]
 | 
						|
					</center></td>
 | 
						|
					$head_block_html
 | 
						|
				</tr>
 | 
						|
			</table>
 | 
						|
			$sub_block_html
 | 
						|
		</header>
 | 
						|
		<nav>
 | 
						|
			$left_block_html
 | 
						|
		</nav>
 | 
						|
		<article>
 | 
						|
			$flash_html
 | 
						|
			$main_block_html
 | 
						|
		</article>
 | 
						|
		<footer>
 | 
						|
			Images © their respective owners,
 | 
						|
			<a href="https://code.shishnet.org/shimmie2/">Shimmie</a> ©
 | 
						|
			<a href="https://www.shishnet.org/">Shish</a> &
 | 
						|
			<a href="https://github.com/shish/shimmie2/graphs/contributors">The Team</a>
 | 
						|
			2007-2019,
 | 
						|
			based on the Danbooru concept.
 | 
						|
			$debug
 | 
						|
			$contact
 | 
						|
		</footer>
 | 
						|
	</body>
 | 
						|
</html>
 | 
						|
EOD;
 | 
						|
    }
 | 
						|
}
 |