mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-03-18 05:48:44 -04: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'));
|
|
}
|
|
|
|
}
|
|
|
|
?>
|