I'm running into a problem with GroupsController::build_acl()
- http://book.cakephp.org/view/647/An-Automated-tool-for-creating-ACOs
It's taken me a while to track down the bug and now I've found it I'm not sure how to work around it.
Symptoms:
Not all methods for NodesController
(defined by me) are returned.
Probable reason:
build_acl()
imports a 3rd party plugin that also has a NodesController
and a subsequent App::import()
doesn't overwrite it.
I'm about to try two runs of the build, one with the plugin code commented out, but a more durable solution would be preferred!
I need a way to either drop an imported controller or force a re-import while remaining in scope.