Changeset 920
- Timestamp:
- 07/22/08 14:57:19 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/kaste/PHPUnit_TestSuite/tests/fixtures/routes.php
r918 r920 3 3 // You can find more about routes on /lib/AkRouters.php and /test/test_AkRouter.php 4 4 5 $Map->connect('/:controller/:action/:id', array('controller' => 'page', 'action' => 'index', 'id'=>OPTIONAL),array('id'=>'\d{1,}'));6 5 $Map->connect('/', array('controller' => 'page', 'action' => 'index')); 7 6 $Map->connect('/:artist/:album/tags',array('controller'=>'tags')); 8 7 $Map->connect('/admin/logs/:controller/:action/:id',array('module'=>'admin/logs')); 8 $Map->connect('/:controller/:action/:id', array('controller' => 'page', 'action' => 'index'),array('id'=>'\d{1,}')); 9 9 $Map->connect('/:module/:controller/:action/:id',array('action'=>COMPULSORY)); 10 10
