diff --git a/Classes/Controller/BackendController.php b/Classes/Controller/BackendController.php index cc28d45..c9d7499 100644 --- a/Classes/Controller/BackendController.php +++ b/Classes/Controller/BackendController.php @@ -84,9 +84,23 @@ public function buildSiteAction($mass = EnterpriseLevelEnumeration::BY_DEFAULT, $this->view->assign('view', $view); $output = $this->kickStarterService->generateFluidPoweredSite($mass, $makeResources, $makeMountPoint, $extensionKey, $author, $title, $description, $useVhs, $useFluidcontentCore, $pages, $content, $backend, $controllers); $this->view->assign('output', $output); + // Note: remapping some arguments to match values that will be displayed in the receipt; display uses template from EXT:builder + $attributes = array( + 'name' => array('value' => $extensionKey), + 'author' => array('value' => $author), + 'level' => array('value' => $level), + 'vhs' => array('value' => $useVhs), + 'pages' => array('value' => $pages), + 'content' => array('value' => $content), + 'backend' => array('value' => $backend), + 'controllers' => array('value' => $controllers), + ); + $attributes['name'] = $extensionKey; + $attributes['vhs'] = $useVhs; + $this->view->assign('attributes', $attributes); } -} \ No newline at end of file +} diff --git a/Resources/Private/Templates/Backend/BuildSite.html b/Resources/Private/Templates/Backend/BuildSite.html index ebdff23..4c6cd03 100644 --- a/Resources/Private/Templates/Backend/BuildSite.html +++ b/Resources/Private/Templates/Backend/BuildSite.html @@ -12,10 +12,10 @@ + - {output} + -