In View, I can get action by using
$this->action
But, I cannot get controller name by
$this->controller
Use $this->params['controller'] to get the current controller.
$this->params['controller']
You can do a debug($this->params) to see other available variables.
debug($this->params)