Initial import of old legacy Zynapse Framework,

untouched since early 2008.
This commit is contained in:
2010-02-25 00:16:53 +02:00
commit 45aceab6b5
100 changed files with 7685 additions and 0 deletions

21
config/routes.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
/*
Zynapse Routes
- configure access urls
*/
// $router->connect('', array(':controller'=>'page'));
$router->connect( 'page/:id([0-9]+)', array(':controller' => 'page', ':action' => 'view', 'test' => 'wiiee') );
$router->connect( ':controller/:action/:id/:sort/:order' );
$router->connect( 'pages', array(':redirect_to' => '/page') );
// default route
$router->connect( ':controller/:action/:id' );
?>