para = $para;
}
public function indexAction()
{
$this->view->view = "Hallo";
$this->view->test = "Add";
$this->view->header = "Index Action";
}
public function addAction()
{
$this->view->view = "Hallo";
$this->view->test = "Index";
$this->view->header = "Add action";
}
}
?>