add form to formatter

The formatter can add a form. This form is handle by controller and exportManager.

[WIP] The csv formatter ask the user to ordering the aggregators.
This commit is contained in:
2016-01-12 22:20:28 +01:00
parent cf255cd0a2
commit fe1a9a0838
5 changed files with 57 additions and 5 deletions

View File

@@ -326,6 +326,6 @@ class ExportController extends Controller
$formFormatter->handleRequest($request);
$dataFormatter = $formFormatter->getData();
return $exportManager->generate($alias, $dataExport['export']);
return $exportManager->generate($alias, $dataExport['export'], $dataFormatter);
}
}