I cant load this plugin how can i load this?
I have IndexController.php and I have OthersController.php. For all those controllers, to have 1 single preDispatch method i wrote a plugin as following. Can you please guide me kindly, how i can now attach this with all other controllers???
@file: application/controllers/GlobalControllerPlugin.php
class GlobalControllerPlugin extends Zend_Controller_Plugin_Abstract { public function preDispatch() { $this->view->helloworld = '(from preDispatch)--->(controllers)--->(views)--->yesGreat)'; } }