2012-08-14 11:57:15 -07:00

11 lines
189 B
PHP

<?php
class Crunchbutton_Hour extends Cana_Table {
public function __construct($id = null) {
parent::__construct();
$this
->table('hour')
->idVar('id_hour')
->load($id);
}
}