$this->controller not defined by default. You must save the reference to the controller manually, for example, in the initialize() method of your component:
public function initialize(&$controller, $settings = array()) { $this->controller = $controller; }
Then you must have access to the properties and methods of the controller.
source share