Cloudlog/application/models/Lotw.php

16 wiersze
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);
}
}
?>