duannai5858 2017-04-06 10:02
浏览 18
已采纳

如何创建自定义cs购物车块

I would like to know how I can send data to any template block that I have created. I need to know who is the controller that is responsible for sending data to the template block.

  • 写回答

1条回答 默认 最新

  • dongshun1884 2017-04-10 11:54
    关注
    1. create your own custom template block into your addon directory ex:my_changes. path /design/addons/my_changes/blocks/my_addon.tpl

    Code:

    {** block-description:my_addon **}
    {$test_variable|fn_print_r}
    
    1. setup your schema for the block.

    path:/app/addons/my_changes/schemas/block_manager/blocks.post.php

    Code:

    if ( !defined('AREA') ) { die('Access denied'); }
    $schema['my_addon'] = array (
        'content' => array(
            'test_variable' => array(
                'type' => 'function',
                'function' => array('fn_get_my_custom_data')
            ),
        ),
        'templates' => array(
            'addons/my_changes/blocks/my_addon.tpl' => array(),
        ),
        'wrappers' => 'blocks/wrappers',
    );
    
    
    return $schema;
    
    1. implement the fn_get_my_custom_data function in your func.php file.

    Code:

    function fn_get_my_custom_data () {return 'hello from my addon';}
    
    1. Go to admin panel, design -> layout, then create new block-> create new block Tab, then you will find your block "_block_my_add_on" there.

    This is it. I hope this makes it clear how to associate a controller with a cscart block.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 像这种代码要怎么跑起来?
  • ¥15 怎么改成循环输入删除(语言-c语言)
  • ¥15 安卓C读取/dev/fastpipe屏幕像素数据
  • ¥15 pyqt5tools安装失败
  • ¥15 mmdetection
  • ¥15 nginx代理报502的错误
  • ¥100 当AWR1843发送完设置的固定帧后,如何使其再发送第一次的帧
  • ¥15 图示五个参数的模型校正是用什么方法做出来的。如何建立其他模型
  • ¥100 描述一下元器件的基本功能,pcba板的基本原理
  • ¥15 STM32无法向设备写入固件