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