从供应商模块覆盖块文件,更改未显示
P粉321584263
P粉321584263 2024-01-16 21:10:24
[PHP讨论组]

我们使用 Codazon MegaMenu 模块作为主菜单,但链接没有标题标签。我想重写它,以便将标题属性添加到类别链接,其值为类别名称。

我创建了自己的模块,并复制了特定方法 (_getHtml),其中创建了类别链接的标签并尝试添加标题标签。我认为我做的一切都是正确的,但是刷新页面后我从未看到标题出现。

我刷新/清理了缓存,升级并刷新了静态文件。

这是我的模块中的 Block/Widgets 文件(最初位于 app/code/Codazon/MegaMenu/Block/Widget):

getData('item_count');
        
        $children = $menuTree->getChildren();
        $parentLevel = $menuTree->getLevel();
        $childLevel = ($parentLevel === null) ? 1 : $parentLevel + 1;

        $counter = 1;
        $itemPosition = 1;
        $childrenCount = $children->count();

        
        $parentPositionClass = $menuTree->getPositionClass();
        $itemPositionClassPrefix = $parentPositionClass ? $parentPositionClass . '-' : 'nav-';

        foreach ($children as $child) {
            $child->setLevel($childLevel);
            $child->setIsFirst($counter == 1);
            $child->setIsLast($counter == $childrenCount);
            $child->setPositionClass($itemPositionClassPrefix . $counter);

            $outermostClassCode = '';
            $outermostClass = $menuTree->getOutermostClass();

            if ($childLevel == 0 && $outermostClass) {
                $outermostClassCode = ' class="' . $outermostClass . '" ';
                $child->setClass($outermostClass);
            }

            if ($this->shouldAddNewColumn($colBrakes, $counter)) {
                $col = 24/ceil($childrenCount/$limit);
                $html .= '
    • '; } $html .= '
    • _getRenderedMenuItemAttributes($child) . '>'; $html .= '' . $this->escapeHtml( $child->getName() ) . '' . $this->_addSubMenu( $child, $childLevel, $childrenWrapClass, $limit ) . '
    • '; $itemPosition++; if($itemCount){ if($itemCount == $counter){ break; } } $counter++; } if (is_array($colBrakes) && count($colBrakes) && $limit) { $html = '
      • ' . $html . '
    • '; } return $html; } }
  • 这是我的 di.xml:

     
         

    这是我的 module.xml:

     
        
            
                
            
         

    有什么想法为什么这不起作用吗?这是我第一次进行这样的覆盖。

    谢谢!

    P粉321584263
    P粉321584263

    全部回复(1)
    P粉714844743

    我认为您需要在模块块中添加父块的所有依赖项。

    热门教程
    更多>
    最新下载
    更多>
    网站特效
    网站源码
    网站素材
    前端模板
    关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
    php中文网:公益在线php培训,帮助PHP学习者快速成长!
    关注服务号 技术交流群
    PHP中文网订阅号
    每天精选资源文章推送
    PHP中文网APP
    随时随地碎片化学习

    Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号