---------------------
function bla (App &$a) {
	$a->bla = 'stuff';
}
---------------------
Signed-off-by: Roland Häder <roland@mxchange.org>
		
	
			
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			316 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			316 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
function maintenance_content(App &$a) {
 | 
						|
	header('HTTP/1.1 503 Service Temporarily Unavailable');
 | 
						|
	header('Status: 503 Service Temporarily Unavailable');
 | 
						|
	header('Retry-After: 600');
 | 
						|
 | 
						|
	return replace_macros(get_markup_template('maintenance.tpl'), array(
 | 
						|
		'$sysdown' => t('System down for maintenance')
 | 
						|
	));
 | 
						|
}
 |