[limb-svn] r5263 - 3.x/examples/shop/settings
svn at limb-project.com
svn at limb-project.com
Fri Mar 16 14:24:00 MSK 2007
Author: serega
Date: 2007-03-16 14:23:59 +0300 (Fri, 16 Mar 2007)
New Revision: 5263
URL: http://fisheye.limb-project.com/changelog/limb/?cs=5263
Added:
3.x/examples/shop/settings/routes.conf.php
Log:
-- routes.conf.php file added to shop
Added: 3.x/examples/shop/settings/routes.conf.php
===================================================================
--- 3.x/examples/shop/settings/routes.conf.php (rev 0)
+++ 3.x/examples/shop/settings/routes.conf.php 2007-03-16 11:23:59 UTC (rev 5263)
@@ -0,0 +1,21 @@
+<?php
+$conf = array(
+
+'MainPage' =>
+ array('path' => '',
+ 'defaults' => array('controller' => 'main_page',
+ 'action' => 'display')),
+
+'ControllerActionId' =>
+ array('path' => ':controller/:action/:id',
+ 'defaults' => array('action' => 'display')),
+
+'ControllerAction' =>
+ array('path' => ':controller/:action',
+ 'defaults' => array('action' => 'display')),
+
+'Controller' =>
+ array('path' => ':controller'),
+
+);
+?>
More information about the limb-svn
mailing list