]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Page.php
Se agrega un nuevo método para mostrar un error y salir.
[mecon/meconlib.git] / lib / MECON / HTML / Page.php
index 85cd558a4782511fad2d86d6bddc3715ed569771..b0e84297b4fdf62ac47cf12bae2667ced50e5376 100644 (file)
@@ -73,5 +73,16 @@ class MECON_HTML_Page extends HTML_Page {
         parent::addBodyContent($content);
     }
 
+    /**
+     * Muestra un error a través y termina el programa.
+     */
+    function error($msg)
+    {
+        require_once 'MECON/HTML/Error.php';
+        $this->addBodyContent(new MECON_HTML_Error($msg));
+        $this->display();
+        exit;
+    }
+
 }
 ?>
\ No newline at end of file