I've baked a Plugin. The Controller in the Plugin works fine. Within the Controller I want to use the HtmlHelper within the Controller.
But... the Controller is complaining: $this->Html stays null.
The Controller in the Plugin contains: public $helpers = array('Html');
For debug purposes I have changed the location to $helpers to the AppController.
In the folder Controller I've added a TestsController which extends from AppController. He has a working HtmlHelper.
My Plugin Controller extends also from the AppController:
Plugin Controllers:
- UserManagerAppController extends from AppController
- UsercomponentsController extends from UserManagerAppController
Normal Controller folder:
- AppController extends from Controller
Why doesn't UsercomponentsController contains a HtmlHelper?