Skip to content

Commit d3bcd3b

Browse files
committed
Remove deprecated CMS Block reference
1 parent f18ce7c commit d3bcd3b

File tree

5 files changed

+3
-13
lines changed

5 files changed

+3
-13
lines changed

Service/Export/Renderer/HtmlRenderer.php

-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
use Magento\Framework\View\Element\Template;
1919
use Magento\Framework\View\FileSystem as ViewFileSystem;
2020
use Magento\Framework\View\Page\Config;
21-
use Magento\Framework\View\Page\Config\RendererInterface;
2221
use Opengento\Gdpr\Service\Export\Renderer\HtmlRenderer\LayoutInitiatorInterface;
2322
use Opengento\Gdpr\Service\Export\Renderer\HtmlRenderer\View\RendererFactory;
2423
use function extract;
@@ -76,8 +75,6 @@ function () use ($data): string { return $this->renderHtml($data); }
7675
}
7776

7877
/**
79-
* @param array $data
80-
* @return string
8178
* @throws Exception
8279
*/
8380
private function renderHtml(array $data): string
@@ -105,8 +102,6 @@ private function renderHtml(array $data): string
105102
}
106103

107104
/**
108-
* @param array $viewVars
109-
* @return string
110105
* @throws Exception
111106
*/
112107
private function renderPage(array $viewVars): string

ViewModel/Customer/Privacy/EraseDataProvider.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
namespace Opengento\Gdpr\ViewModel\Customer\Privacy;
99

10-
use Magento\Cms\Block\Block;
1110
use Magento\Cms\Block\BlockByIdentifier;
1211
use Magento\Framework\App\Config\ScopeConfigInterface;
1312
use Magento\Framework\View\Element\Block\ArgumentInterface;
@@ -49,8 +48,8 @@ public function getErasureInformationHtml(): string
4948
public function getAnonymizeInformationHtml(): string
5049
{
5150
return $this->anonymizeInformation ??= $this->blockFactory->createBlock(
52-
Block::class,
53-
['data' => ['block_id' => (string) $this->scopeConfig->getValue(
51+
BlockByIdentifier::class,
52+
['data' => ['identifier' => (string) $this->scopeConfig->getValue(
5453
self::CONFIG_PATH_ANONYMIZE_INFORMATION_BLOCK,
5554
ScopeInterface::SCOPE_STORE
5655
)]]

ViewModel/Customer/Privacy/ExportDataProvider.php

-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
namespace Opengento\Gdpr\ViewModel\Customer\Privacy;
99

10-
use Magento\Cms\Block\Block;
1110
use Magento\Cms\Block\BlockByIdentifier;
1211
use Magento\Framework\App\Config\ScopeConfigInterface;
1312
use Magento\Framework\View\Element\Block\ArgumentInterface;
@@ -22,9 +21,6 @@ final class ExportDataProvider implements ArgumentInterface
2221

2322
private BlockFactory $blockFactory;
2423

25-
/**
26-
* @var string|null
27-
*/
2824
private ?string $exportInformation;
2925

3026
public function __construct(

ViewModel/Customer/Privacy/SettingsDataProvider.php

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
namespace Opengento\Gdpr\ViewModel\Customer\Privacy;
99

10-
use Magento\Cms\Block\Block;
1110
use Magento\Cms\Block\BlockByIdentifier;
1211
use Magento\Framework\App\Config\ScopeConfigInterface;
1312
use Magento\Framework\View\Element\Block\ArgumentInterface;

etc/module.xml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<sequence>
1111
<module name="Magento_Theme"/>
1212
<module name="Magento_Config"/>
13+
<module name="Magento_Cookie"/>
1314
<module name="Magento_Customer"/>
1415
<module name="Magento_Quote"/>
1516
<module name="Magento_Sales"/>

0 commit comments

Comments
 (0)