Subversion Repositories SmartDukaan

Rev

Rev 16596 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
16591 anikendra 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
 * @package       app.Config
19
 * @since         CakePHP(tm) v 0.2.9
20
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
21
 */
22
/**
23
 * Here, we are connecting '/' (base path) to controller called 'Pages',
24
 * its action called 'display', and we pass a param to select the view file
25
 * to use (in this case, /app/View/Pages/home.ctp)...
26
 */
16596 anikendra 27
	Router::connect('/', array('controller' => 'AppOffers', 'action' => 'index','1985','android'));
16717 anikendra 28
	Router::connect('/:slug1', array('controller' => 'AppOffers', 'action' => 'index'));
16591 anikendra 29
	Router::connect('/:slug1/:slug2', array('controller' => 'AppOffers', 'action' => 'index'));
30
/**
31
 * ...and connect the rest of 'Pages' controller's URLs.
32
 */
33
	Router::connect('/pages/*', array('controller' => 'pages', 'action' => 'display'));
34
 
35
/**
36
 * Load all plugin routes. See the CakePlugin documentation on
37
 * how to customize the loading of plugin routes.
38
 */
39
	CakePlugin::routes();
40
 
41
/**
42
 * Load the CakePHP default routes. Only remove this if you do not want to use
43
 * the built-in default routes.
44
 */
45
	require CAKE . 'Config' . DS . 'routes.php';