Просмотр файла system/inc/classes/log.class.php

Размер файла: 960B
<?

Class log_shcms { 
   const USER_ERROR_DIR = 'system/thumbs/log_shcms.ini'; 
   const GENERAL_ERROR_DIR = 'system/thumbs/log_shcms.ini'; 
     public function user($msg,$user_id,$login) 
     { 
     $date = date('d.m.y h:i:s'); 
     $log = $msg." [SHCMS Engine  ".$date."] 
	 DATE:  ".$date."  |  USERS:  ".$login." |  ID: ".$user_id.";\n"; 
     error_log($log, 3, self::USER_ERROR_DIR); 
     } 
     public function general($msg) 
     { 
     $date = date('d.m.y H:i:s'); 
     $log = $msg."   |  Дата:  ".$date."\n"; 
  //   error_log($msg."   |  Tarih:  ".$date, 3, self::GENERAL_ERROR_DIR); // Не обязательно включать
     } 
 } 

$log = new log_shcms(); 
$log->user($msg,$user_id,$login); //use for user errors 
//$log->general($msg); Если вы включили (error_log($msg."   |  Tarih:  ".$date, 3, self::GENERAL_ERROR_DIR); ) то удалите комментарию  которая сделана тут

?>