1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php class Event extends ActiveRecord\Model { static $belongs_to = array( 'host', 'venue' );
static $delegate = array( array('state', 'address', 'to' => 'venue'), array('name', 'to' => 'host', 'prefix' => 'woot') ); }; ?>
|