zoneminder/web/api/app/Config/routes.php

64 lines
2.2 KiB
PHP
Raw Normal View History

<?php
/**
* Routes configuration
*
* In this file, you set up routes to your controllers and their actions.
* Routes are very important mechanism that allows you to freely connect
* different URLs to chosen controllers and their actions (functions).
*
2018-03-22 01:09:55 +08:00
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
2018-03-22 01:09:55 +08:00
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @package app.Config
* @since CakePHP(tm) v 0.2.9
2018-03-22 01:09:55 +08:00
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
2014-04-23 11:43:59 +08:00
/**
* Load the API / REST routes
*/
Router::mapResources('monitors');
2014-04-24 03:54:15 +08:00
Router::mapResources('zones');
2014-04-24 03:58:52 +08:00
Router::mapResources('configs');
2014-04-25 09:59:57 +08:00
Router::mapResources('events');
2014-04-25 10:14:53 +08:00
Router::mapResources('frames');
2015-06-11 10:58:58 +08:00
Router::mapResources('host');
Router::mapResources('logs');
Router::mapResources('states');
Router::mapResources('zonepresets');
/* Add new API to retrieve camera controls - for PTZ */
/* refer to https://github.com/ZoneMinder/ZoneMinder/issues/799#issuecomment-105233112 */
2018-03-05 10:20:48 +08:00
Router::mapResources('controls');
2018-04-07 02:42:20 +08:00
Router::mapResources('groups');
2014-04-23 11:43:59 +08:00
Router::parseExtensions();
/**
* Here, we are connecting '/' (base path) to controller called 'Pages',
* its action called 'display', and we pass a param to select the view file
* to use (in this case, /app/View/Pages/home.ctp)...
*/
Router::connect('/', array('controller' => 'pages', 'action' => 'display', 'home'));
/**
* ...and connect the rest of 'Pages' controller's URLs.
*/
Router::connect('/pages/*', array('controller' => 'pages', 'action' => 'display'));
/**
* Load all plugin routes. See the CakePlugin documentation on
* how to customize the loading of plugin routes.
*/
CakePlugin::routes();
/**
* Load the CakePHP default routes. Only remove this if you do not want to use
* the built-in default routes.
*/
require CAKE . 'Config' . DS . 'routes.php';