2015-02-08 16:29:39 +00:00
|
|
|
<?php
|
|
|
|
|
2015-04-30 19:19:07 +00:00
|
|
|
namespace FuzeWorks;
|
|
|
|
|
2015-03-16 12:29:03 +00:00
|
|
|
class Interpret extends Model {
|
2015-02-08 16:29:39 +00:00
|
|
|
|
|
|
|
public function __construct(&$core){
|
|
|
|
parent::__construct($core);
|
|
|
|
|
2015-05-06 19:25:57 +00:00
|
|
|
$this->setType('techfuze/databaseutils', 'Model');
|
2015-02-08 16:29:39 +00:00
|
|
|
$this->table = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function table($name) {
|
|
|
|
$this->table = $name;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|