Ödeme yapılandırmasına ekleyerek cms blok mesajınızı KO şablonu için kullanılabilir hale getirecek bir modül oluşturabilirsiniz.
Gelen Your/Module/etc/frontend/di.xml
biz ödeme yapılandırma için yeni bir yapılandırma sağlayıcı ekleyin:
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<type name="Magento\Checkout\Model\CompositeConfigProvider">
<arguments>
<argument name="configProviders" xsi:type="array">
<item name="cms_block_config_provider" xsi:type="object">Your\Module\Model\ConfigProvider</item>
</argument>
</arguments>
</type>
</config>
İçinde Your/Module/Model/ConfigProvider.php
cms blok html getiren kodu var:
<?php
namespace Your\Module\Model;
use Magento\Checkout\Model\ConfigProviderInterface;
use Magento\Framework\View\LayoutInterface;
class ConfigProvider implements ConfigProviderInterface
{
/** @var LayoutInterface */
protected $_layout;
public function __construct(LayoutInterface $layout)
{
$this->_layout = $layout;
}
public function getConfig()
{
$cmsBlockId = 1; // id of cms block to use
return [
'cms_block_message' => $this->_layout->createBlock('Magento\Cms\Block\Block')->setBlockId($cmsBlockId)->toHtml()
];
}
}
Şimdi temanızdaki cms bloğunu şu şekilde görüntüleyebileceğiniz shipping.html KO şablonunun üzerine yazmalısınız:
<div data-bind="html: window.checkoutConfig.cms_block_message"></div>
Not: statik blokta çift tırnak (örneğin bir html etiketi) içeren html etiketlerini kullanmak istiyorsanız, çift eğik çizgiden ters eğik çizgiden kaçmanız gerekir. Örneğin:
Accept our <a target=\"_blank\" href=\"/privacy-policy\">privacy policy</a>