2013-01-14 23:48:01 +00:00
|
|
|
<?php
|
2016-02-05 20:52:39 +00:00
|
|
|
if(! function_exists('maintenance_content')) {
|
2013-01-14 23:48:01 +00:00
|
|
|
function maintenance_content(&$a) {
|
|
|
|
return replace_macros(get_markup_template('maintenance.tpl'), array(
|
|
|
|
'$sysdown' => t('System down for maintenance')
|
|
|
|
));
|
|
|
|
}
|
2016-02-05 20:52:39 +00:00
|
|
|
}
|