Host.php 135 B

123456789
  1. <?php
  2. class Host extends ActiveRecord\Model
  3. {
  4. static $has_many = array(
  5. 'events',
  6. array('venues', 'through' => 'events')
  7. );
  8. }
  9. ?>