承接 yireo/magento2-additional-block-template 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

yireo/magento2-additional-block-template

最新稳定版本:0.0.4

Composer 安装命令:

composer require yireo/magento2-additional-block-template

包简介

N/A

README 文档

README

A Magento 2 module to allow for additional templates to be rendered, besides the original template.

Overview

When the Magento frontend renders its storefront, it uses the XML layout to position blocks all around. Each block can be rendered via a template and by default, this means that one block only has one template. Adding a new template right before the original template but with a new <block/> definition causes another $block object to be created. This module overcomes this shortcoming and simply allows you to add multiple templates to one single $block instance.

Installation

composer require yireo/magento2-additional-block-template
bin/magento module:enable Yireo_AdditionalBlockTemplate

Usage

Using the XML layout, you can reference a certain block and add your own template in front of the original template (before), after the original template (after) or right before the final closing tag in the original template (nest):

<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
        <referenceBlock name="category.description">
            <arguments>
                <argument name="additional_templates" xsi:type="array">
                    <item name="example1" xsi:type="array">
                        <item name="template" xsi:type="string">Yireo_Example::example-before.phtml</item>
                        <item name="position" xsi:type="string">before</item>
                    </item>
                    <item name="example2" xsi:type="array">
                        <item name="template" xsi:type="string">Yireo_Example::example-after.phtml</item>
                        <item name="position" xsi:type="string">after</item>
                    </item>
                    <item name="example3" xsi:type="array">
                        <item name="template" xsi:type="string">Yireo_Example::example-nest.phtml</item>
                        <item name="position" xsi:type="string">nest</item>
                    </item>
                </argument>
            </arguments>
        </referenceBlock>
    </body>
</page>

Each item name (in this case example1, etc) can be retreived in the block template using $block->getAdditionalTemplateName().

统计信息

  • 总下载量: 17.2k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 8
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 8
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: OSL-3.0
  • 更新时间: 2024-02-02