Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
renderFooter example
)
;
$this
->translator->
injectSettings
(
$productExport
->
getStorefrontSalesChannelId
(
)
,
$productExport
->
getSalesChannelDomain
(
)
->
getLanguageId
(
)
,
$this
->languageLocaleProvider->
getLocaleForLanguageId
(
$productExport
->
getSalesChannelDomain
(
)
->
getLanguageId
(
)
)
,
$context
->
getContext
(
)
)
;
$headerContent
=
$this
->productExportRender->
renderHeader
(
$productExport
,
$context
)
;
$footerContent
=
$this
->productExportRender->
renderFooter
(
$productExport
,
$context
)
;
$finalFilePath
=
$this
->productExportFileHandler->
getFilePath
(
$productExport
)
;
$this
->translator->
resetInjection
(
)
;
$writeProductExportSuccessful
=
$this
->productExportFileHandler->
finalizePartialProductExport
(
$filePath
,
$finalFilePath
,
$headerContent
,
$footerContent
)
;
$body
.=
$this
->productExportRender->
renderBody
(
$productExport
,
$context
,
$data
)
;
}
if
(
$exportBehavior
->
batchMode
(
)
)
{
break
;
}
}
$content
.=
$this
->seoUrlPlaceholderHandler->
replace
(
$body
,
$productExport
->
getSalesChannelDomain
(
)
->
getUrl
(
)
,
$context
)
;
if
(
$exportBehavior
->
generateFooter
(
)
)
{
$content
.=
$this
->productExportRender->
renderFooter
(
$productExport
,
$context
)
;
}
$encodingEvent
=
$this
->eventDispatcher->
dispatch
(
new
ProductExportChangeEncodingEvent
(
$productExport
,
$content
,
mb_convert_encoding
(
$content
,
$productExport
->
getEncoding
(
)
)
)
)
;
$this
->translator->
resetInjection
(
)
;
$this
->connection->
delete
(
'sales_channel_api_context',
[
'token' =>
$contextToken
]
)
;
if
(
empty
(
$content
)
)
{