31 lines
		
	
	
		
			552 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			552 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
class DowntimeTheme extends Themelet {
 | 
						|
	/**
 | 
						|
	 * Show the admin that downtime mode is enabled
 | 
						|
	 */
 | 
						|
	public function display_notification(Page $page) {
 | 
						|
		$page->add_block(new Block("Downtime",
 | 
						|
			"<span style='font-size: 1.5em'><b>DOWNTIME MODE IS ON!</b></span>", "left", 0));
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Display $message and exit
 | 
						|
	 */
 | 
						|
	public function display_message($message) {
 | 
						|
		header("HTTP/1.0 503 Service Temporarily Unavailable");
 | 
						|
		print <<<EOD
 | 
						|
<html>
 | 
						|
	<head>
 | 
						|
		<title>Downtime</title>
 | 
						|
	</head>
 | 
						|
	<body>
 | 
						|
		$message
 | 
						|
	</body>
 | 
						|
</html>
 | 
						|
EOD;
 | 
						|
		exit;
 | 
						|
	}
 | 
						|
}
 | 
						|
?>
 |