Cloudlog/application/models/lotw.php
2014-03-03 17:28:33 +00:00

16 行
无行尾
202 B
PHP

<?php
class LOTW extends CI_Model {
function __construct()
{
// Call the Model constructor
parent::__construct();
}
function empty_table($table) {
$this->db->empty_table($table);
}
}
?>