public function __toString()
 {
     $trace = $this->getTrace();
     $exception = $trace[0]['args'][0];
     $div = new moojon_div_tag(new moojon_h1_tag($this->getMessage(), array('title' => $this->get_line($exception->getFile(), $exception->getLine()))), array('id' => 'exception_report'));
     $report = "\n" . $this->getMessage() . "\n\n" . $this->get_trace_report($this->getTrace());
     //$div->add_child($this->get_trace_ol());
     switch (UI) {
         case 'CGI':
             return $div->render();
             break;
         case 'CLI':
             return "{$report}";
             break;
     }
     return $div;
 }
Example #2
0
 public static function render()
 {
     if (ENVIRONMENT != 'production') {
         $div = new moojon_div_tag(null, array('id' => 'debug'));
         $div->add_child(new moojon_h2_tag('Session'));
         $ul = new moojon_ul_tag();
         foreach ($_SESSION as $key => $value) {
             if (is_array($value)) {
                 $value = 'array(' . implode(', ', $value) . ')';
             }
             $ul->add_child(new moojon_li_tag("{$key}: {$value}"));
         }
         $div->add_child($ul);
         $div->add_child(new moojon_h2_tag('Cookie'));
         $ul = new moojon_ul_tag();
         foreach ($_COOKIE as $key => $value) {
             if (is_array($value)) {
                 $value = 'array(' . implode(', ', $value) . ')';
             }
             $ul->add_child(new moojon_li_tag("{$key}: {$value}"));
         }
         $div->add_child($ul);
         $div->add_child(new moojon_h2_tag('URL'));
         $ul = new moojon_ul_tag();
         $app = APP;
         $controller = CONTROLLER;
         $action = ACTION;
         $ul->add_child(new moojon_li_tag("App: {$app}"));
         $ul->add_child(new moojon_li_tag("Controller: {$controller}"));
         $ul->add_child(new moojon_li_tag("Action: {$action}"));
         $div->add_child($ul);
         $div->add_child(new moojon_h2_tag('Paths'));
         $ul = new moojon_ul_tag();
         $app_path = moojon_paths::get_app_path($app);
         $controller_path = moojon_paths::get_controller_path($app, $controller);
         $view_path = moojon_paths::get_view_path($app, $controller, $action);
         $ul->add_child(new moojon_li_tag("app_path: {$app_path}"));
         $ul->add_child(new moojon_li_tag("controller_path: {$controller_path}"));
         $ul->add_child(new moojon_li_tag("view_path: {$view_path}"));
         $div->add_child($ul);
         echo $div->render();
     }
 }