pimcore / studio-ui-bundle

Studio UI bundle
Other
14 stars 6 forks source link

Asset List Selection Actions (CSV Export, ZIP Download) #178

Closed fashxp closed 1 month ago

fashxp commented 6 months ago

image

markus-moser commented 3 months ago

Related to. https://github.com/pimcore/studio-backend-bundle/issues/137

lukmzig commented 2 months ago

ZIP archive to download can be created under this route: https://github.com/pimcore/studio-backend-bundle/blob/1.x/src/Asset/Controller/CreateZipController.php#L49 This will trigger GEE job, when its finished, the zip can be download here based on the jobrun ID https://github.com/pimcore/studio-backend-bundle/blob/1.x/src/Asset/Controller/DownloadZipController.php#L49

CSV export can be created under this route: https://github.com/pimcore/studio-backend-bundle/blob/1.x/src/Asset/Controller/CreateCsvController.php#L48 This will trigger GEE job, when its finished, the csv file can be download here based on the jobrun ID https://github.com/pimcore/studio-backend-bundle/blob/1.x/src/Asset/Controller/DownloadCsvController.php#L54