a tiny mvc framework for php using php-activerecord
at v1 9 lines 135 B view raw
1<?php 2class Host extends ActiveRecord\Model 3{ 4 static $has_many = array( 5 'events', 6 array('venues', 'through' => 'events') 7 ); 8} 9?>