(尚未測試) Log 類別

This commit is contained in:
Yuan Chiu 2015-04-01 16:08:11 +08:00
parent f141d9e8b9
commit c8794e7f3f
2 changed files with 23 additions and 1 deletions

View File

@ -33,7 +33,6 @@ class DBLog extends Database {
$array['other'] = null;
}
// TODO: 不填enable, enable_noAppoint也要能操作
$LID = $array['lid'];
$UId = $array['uid'];
$Date = $array['date'];

23
htdocs/lib/Log/Log.php Normal file
View File

@ -0,0 +1,23 @@
<?php
/**
* Log.php
*/
namespace UElearning\Log;
require_once UELEARNING_LIB_ROOT.'/Database/DBStudy.php';
require_once UELEARNING_LIB_ROOT.'/Study/Exception.php';
use UElearning\Database;
use UElearning\Exception;
/**
* 學習記錄
*
* @version 2.0.1
* @package UElearning
* @subpackage Log
*/
class Log {
}