I have an array in my controller:
$data = array(
'a' => "Hay",
'b' => "Bee",
'c' => "Sea",
);
$this->view->assign($data);
In the view nothing is returned:
<?php echo $this->data['a']; ?>
<?php var_dump($this->data); ?>
$this->datapoints to$data? try tovar_dump( $this->data)