예제 #1
0
 public function __construct($pa_entry = null)
 {
     parent::__construct();
     if (is_array($pa_entry)) {
         $this->log($pa_entry);
     }
 }
예제 #2
0
 /** 
  *
  */
 public function __construct($pa_entry = null)
 {
     $o_config = Configuration::load();
     # system codes are: "LOGN" = "successful login"; "LOGF" = "failed login"; "SYS" = "system"; "QUE" = queue
     $va_codes = $o_config->getList("event_log_codes");
     if (!is_array($va_codes)) {
         $va_codes = array();
     }
     $this->opa_log_codes = array_merge($va_codes, array("LOGN", "LOGF", "SYS", "DEBG", "QUE", "ERR"));
     parent::__construct();
 }
예제 #3
0
 /** 
  *
  */
 public function __construct($pa_entry = null)
 {
     parent::__construct();
 }
예제 #4
0
 function __construct($table, $user = null, $minLevel = null)
 {
     parent::__construct($user, $minLevel);
     $this->table = $table;
 }
예제 #5
0
 public function __construct($file, $dateFormat, $logLevel)
 {
     $this->file = $file;
     parent::__construct($dateFormat, $logLevel);
 }