Event.php 236 B

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