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