allow option to not load the frames DB table

This commit is contained in:
Pliable Pixels 2021-06-27 15:55:10 -04:00
parent e9845d96f4
commit 6c3f18a347
1 changed files with 4 additions and 0 deletions

View File

@ -143,6 +143,10 @@ class EventsController extends AppController {
$mon_options = '';
}
$noFrames = $this->request->query('noframes');
if ($noFrames=='true')
$this->Event->unbindModel(array('hasMany' => array('Frame')));
$options = array('conditions' => array(array('Event.' . $this->Event->primaryKey => $id), $mon_options));
$event = $this->Event->find('first', $options);