2014-05-15 12:15:24 -03:00

16 lines
270 B
PHP

<?php
class Crunchbutton_Driver_Log extends Cana_Table {
public function __construct($id = null) {
parent::__construct();
$this
->table('driver_log')
->idVar('id_driver_log')
->load($id);
}
public function exports(){
return $this->properties();
}
}