mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-02-01 10:01:07 -05:00
13 lines
218 B
PHP
13 lines
218 B
PHP
<?php
|
|
class Event extends AppModel {
|
|
public $useTable = 'Events';
|
|
public $primaryKey = 'Id';
|
|
public $belongsTo = array(
|
|
'Monitor' => array(
|
|
'className' => 'Monitor',
|
|
'foreignKey' => 'MonitorId'
|
|
)
|
|
);
|
|
}
|
|
?>
|