Пример #1
0
 private static function notify_client($buffer)
 {
     if (JS_OUTPUT && class_exists('Epesi')) {
         chdir(dirname(dirname(__FILE__)));
         Epesi::clean();
         if (DISPLAY_ERRORS) {
             Epesi::js("\$('debug_content').style.display='block';");
             Epesi::text($buffer . '<hr>', 'error_box', 'prepend');
         }
         Epesi::alert('There was an error in one of epesi modules.' . (DISPLAY_ERRORS ? ' Details are displayed at the bottom of the page, please send this information to system administrator.' : ''));
         return Epesi::get_output();
     }
     return $buffer;
 }