OSDN Git Service

camephp
[umumu/umumu.git] / config / routes.php
1 <?php
2 /**
3  * Routes configuration
4  *
5  * In this file, you set up routes to your controllers and their actions.
6  * Routes are very important mechanism that allows you to freely connect
7  * different URLs to chosen controllers and their actions (functions).
8  *
9  * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
10  * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
11  *
12  * Licensed under The MIT License
13  * For full copyright and license information, please see the LICENSE.txt
14  * Redistributions of files must retain the above copyright notice.
15  *
16  * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
17  * @link          http://cakephp.org CakePHP(tm) Project
18  * @license       http://www.opensource.org/licenses/mit-license.php MIT License
19  */
20
21 use Cake\Core\Plugin;
22 use Cake\Routing\Router;
23
24 /**
25  * The default class to use for all routes
26  *
27  * The following route classes are supplied with CakePHP and are appropriate
28  * to set as the default:
29  *
30  * - Route
31  * - InflectedRoute
32  * - DashedRoute
33  *
34  * If no call is made to `Router::defaultRouteClass`, the class used is
35  * `Route` (`Cake\Routing\Route\Route`)
36  *
37  * Note that `Route` does not do any inflections on URLs which will result in
38  * inconsistently cased URLs when used with `:plugin`, `:controller` and
39  * `:action` markers.
40  *
41  */
42 Router::defaultRouteClass('Route');
43
44 Router::scope('/', function ($routes) {
45     /**
46      * Here, we are connecting '/' (base path) to a controller called 'Pages',
47      * its action called 'display', and we pass a param to select the view file
48      * to use (in this case, src/Template/Pages/home.ctp)...
49      */
50     $routes->connect('/', ['controller' => 'Pages', 'action' => 'display', 'home']);
51
52     /**
53      * ...and connect the rest of 'Pages' controller's URLs.
54      */
55     $routes->connect('/pages/*', ['controller' => 'Pages', 'action' => 'display']);
56
57     /**
58      * Connect catchall routes for all controllers.
59      *
60      * Using the argument `InflectedRoute`, the `fallbacks` method is a shortcut for
61      *    `$routes->connect('/:controller', ['action' => 'index'], ['routeClass' => 'InflectedRoute']);`
62      *    `$routes->connect('/:controller/:action/*', [], ['routeClass' => 'InflectedRoute']);`
63      *
64      * Any route class can be used with this method, such as:
65      * - DashedRoute
66      * - InflectedRoute
67      * - Route
68      * - Or your own route class
69      *
70      * You can remove these routes once you've connected the
71      * routes you want in your application.
72      */
73     $routes->fallbacks('InflectedRoute');
74 });
75
76 /**
77  * Load all plugin routes.  See the Plugin documentation on
78  * how to customize the loading of plugin routes.
79  */
80 Plugin::routes();