Fork me on GitHub

Has Many

To define one or more has many associations, set the has_many property.

<?php
class Venue extends MvcModel {

  var $has_many = array('Event');

}
?>