2012-06-20 21:39:23 -07:00

11 lines
189 B
PHP

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