PHP Classes

File: template/Code/framework-form-content

Recommend this page to a friend!
  Classes of Fabrice Fesch   Melis Tool Creator   template/Code/framework-form-content   Download  
File: template/Code/framework-form-content
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Melis Tool Creator
Module for the Melis CMS to create tools
Author: By
Last change:
Date: 1 year ago
Size: 519 bytes
 

Contents

Class file image Download
/** * Render the form view content of the tool * @return ViewModel */ public function renderToolFormAction() { $view = new ViewModel(); $thirdPartySrv = $this->getServiceManager()->get('MelisPlatformService'); $thirdPartySrv->setRoute('/melis/moduletpl/form/'.$this->params()->fromQuery('id')); $response = $thirdPartySrv->getContent(); $view->content = $response; $view->id = $this->params()->fromQuery('id', 0); return $view; }