Ejemplo n.º 1
0
 function serverInformation()
 {
     @ob_start();
     MainWPChildServerInformation::render();
     $output['information'] = @ob_get_contents();
     @ob_end_clean();
     @ob_start();
     MainWPChildServerInformation::renderCron();
     $output['cron'] = @ob_get_contents();
     @ob_end_clean();
     @ob_start();
     MainWPChildServerInformation::renderErrorLogPage();
     $output['error'] = @ob_get_contents();
     @ob_end_clean();
     @ob_start();
     MainWPChildServerInformation::renderWPConfig();
     $output['wpconfig'] = @ob_get_contents();
     @ob_end_clean();
     @ob_start();
     MainWPChildServerInformation::renderhtaccess();
     $output['htaccess'] = @ob_get_contents();
     @ob_end_clean();
     MainWPHelper::write($output);
 }