With a bit more work, I was able to get a solution to my problem. Here's a working link that defines an admin route to my plugin's page: http://localhost/admin/chart/configuration/edit/488
Its a bit wonky, frankly, the way it all works. But to break this down into abstracted chunks: [domain]/[admin_route]/[plugin]/[controller]/[action]/ [params1..2..3..] I didn't do anything special to make this work, I just created the configuration_controller.php file to have a single point of entry for all admin operations. Would have been nice to just have /admin/plugin/ action, but without messing with routes.php, this doesn't seem possible. I suppose I could rearrange it that way, but making changes to the routes.php file for the sake of a plugin doesn't make sense to me. Anyway, hope someone else finds this of value! On Aug 19, 9:32 pm, Hugo M <[email protected]> wrote: > Good question! I want to know the answer too :P > > 2010/8/19 DragonFlyEye <[email protected]>: > > > Is it possible to configure admin routing that will handle plugins? Or > > is it better to create an "AdminController" that will handle > > administration of my site? Or is there another option entirely? > > > Check out the new CakePHP Questions sitehttp://cakeqs.organd help others > > with their CakePHP related questions. > > > You received this message because you are subscribed to the Google Groups > > "CakePHP" group. > > To post to this group, send email to [email protected] > > To unsubscribe from this group, send email to > > [email protected] For more options, visit this group > > athttp://groups.google.com/group/cake-php?hl=en > > Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
