Re: routing to a plugin

2006-10-11 Thread [EMAIL PROTECTED]
Ad7six has this on his blog: http://www.noswad.me.uk/MiBlog/PluginRoutes hf with it --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com

Re: routing to a plugin

2006-10-10 Thread mac joost
Hi, Don't know if this helps or is what you mean, but on the bottom of: http://manual.cakephp.org/chapter/plugins it says: "You can have a default controller with the name of your plugin. If you do that, you can access it via /[plugin]/action. For example, a plugin named 'users' with a controlle

Re: routing to a plugin

2006-10-10 Thread [EMAIL PROTECTED]
well, you made me curious : i added this route rule: $Route->connect('/acl', array('controller' => 'acl_admin_demo')); acl_admin_demo is a plugin i'm using, when i go to mysite/acl i see the plugin main page, but i also get several notices like undefined index:action in dispatche

routing to a plugin

2006-10-10 Thread Jonatham Richman
can cakephp route to plugins? i've tried route "/test" url to my test plugin, as seen above: $Route->connect('/test', array('controller' => 'TestIndex', 'action' => 'index')); thanks, and sorry for my english errors :-) --~--~-~--~~~---~--~~ You received this me