<?php
// TestController.php
public function listAction()
{
$viewModel = new ViewModel();
$viewModel->setTerminal(true);
$viewModel->data = 'test value';
return $viewModel;
}
?>
<?php // list.phtml <?php echo $data; ?>
$this->layout()->clearOptions();
$this->layout()->clearVariables();
$this->layout()->clearChildren();
$this->layout()->>setTerminal(true);
とかも試してみましたがダメでした。
0 件のコメント:
コメントを投稿