Devin Smith 33e1e9d6dc a little easier
partial #4908
2015-05-13 17:23:44 -07:00

11 lines
195 B
PHP

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