'); } function render_admin_panel() { new Material\AdminPanel(); } function render_admin_login() { new Material\Login(); } function render_admin_dashboard() { new Material\Dashboard(); } function openside($title = FALSE, $class = NULL) { $html = '
'; $html .= $title ? '
'.$title.'
' : ''; $html .= '
'; echo $html; } function closeside($footer = FALSE) { $html = '
'; $html .= $footer ? '' : ''; $html .= '
'; echo $html; } function opentable($title, $class = NULL) { $html = '
'; $html .= $title ? '

'.$title.'

' : ''; $html .= '
'; echo $html; } function closetable() { $html = '
'; $html .= '
'; echo $html; } \PHPFusion\OutputHandler::addHandler(function ($output = '') { $color = !check_admin_pass('') ? '2c3e50' : '243447'; return preg_replace("//i", '', $output); });