php 向行,列或模块添加自定义属性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 向行,列或模块添加自定义属性相关的知识,希望对你有一定的参考价值。

<?php // do not copy this line, start with line 3

add_filter('fl_builder_row_attributes', function ( $attrs, $row ) {
    if ( 'my-row-id' == $row->settings->id ) {

        $attrs['data-foo'] = 'bar';
        $attrs['data-foo-2'] = 'bar-2';

    }
    return $attrs;
}, 10, 2);
<?php // do not copy this line, start with line 3

add_filter('fl_builder_row_attributes', function ($attrs, $row) {
    if ('my-module-id' == $row->settings->id) {
        
        $attrs['data-foo'] = 'bar';
    }
    return $attrs;
  }, 10, 2);
<?php // do not copy this line, start with line 3

add_filter('fl_builder_column_attributes', function ($attrs, $row) {
    if ('my-column-id' == $row->settings->id) {
        
        $attrs['data-foo'] = 'bar';
    }
    return $attrs;
  }, 10, 2);
<?php // do not copy this line, start with line 3

add_filter('fl_builder_row_attributes', function ($attrs, $row) {
    if ('my-row-id' == $row->settings->id) {
        
        $attrs['data-foo'] = 'bar';
    }
    return $attrs;
  }, 10, 2);

以上是关于php 向行,列或模块添加自定义属性的主要内容,如果未能解决你的问题,请参考以下文章

TS TypeScript window 添加自定义属性

php Real Homes:添加属性自定义元字段

php Laravel在中间件中添加自定义属性以进行请求

php 用于向woocommerce产品属性添加自定义复选框以隐藏购物车按钮的功能

css 向行或列背景添加渐变

Shopware 6:在自己的自定义管理模块中获取 PHP 数据