]> git.sur5r.net Git - bacula/bacula/commitdiff
bacula-web: Two new functions in CErrorHandler php class
authorDavide Franco <bacula-dev@dflc.ch>
Fri, 24 Jun 2011 16:20:21 +0000 (18:20 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:49:16 +0000 (14:49 +0200)
 - TriggerError()
 - SetDebug()

gui/bacula-web/includes/app/cerrorhandler.class.php

index b24e90458e41cc86fdf3b61be2aa7d96c294bb2d..6812873917dba24f552c7272797210b850042c4f 100644 (file)
@@ -22,10 +22,21 @@ class CErrorHandler
 
         }
 
+       public function SetDebug( $debuglevel )
+       {
+               $this->debug_level = $debuglevel;
+       }       
+
+       public function TriggerError( $type, $string, $file = '', $line = '', $vars = '' )
+       {
+
+       }
+
         public function __destruct()
         {
 
         }
 }
+
 ?>