mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-02-01 01:51:12 -05:00
11 lines
144 B
PHP
11 lines
144 B
PHP
<?php
|
|
|
|
class ZonesController extends AppController {
|
|
public function index() {
|
|
$this->set('zones', $this->Zone->find('all'));
|
|
}
|
|
|
|
}
|
|
|
|
?>
|