Example #1
0
 function parse($iso, $information)
 {
     $view = new RM_View();
     $view->assign('information', $information);
     return $view->render('templates/invoice.phtml');
 }
 /**
  * Get all form panels returns JSON with title and link to JS
  *
  */
 public function helppageAction()
 {
     ob_clean();
     $view = new RM_View();
     $view->addScriptPath(implode(DIRECTORY_SEPARATOR, array(RM_Environment::getConnector()->getRootPath(), 'RM', 'userdata', 'modules', 'FormDesigner', 'views', 'admin', 'scripts', 'FormDesigner')));
     echo $view->render('help.phtml');
     die;
 }