Ho questo controller:
...
public function insertAction() {
$something = 'testcase';
$this->loadLayout();
$this->_title($this->__("the title"));
$this->renderLayout();
}
...
Vorrei accedere $something
al mio documento .phtml, come posso fare? (o per dirla in altro modo: come posso accedere $something
al mio file .phtml)
$block->assign($var)
ma come verrebbe recuperato nelphtml
file?