J'ai ce contrôleur:
...
public function insertAction() {
$something = 'testcase';
$this->loadLayout();
$this->_title($this->__("the title"));
$this->renderLayout();
}
...
Je souhaite accéder $something
à mon document .phtml, comment faire? (ou pour le dire autrement: comment puis-je accéder $something
à mon fichier .phtml)
$block->assign($var)
mais comment serait récupéré dans lephtml
fichier?