我已经使用子模块创建了自定义divi builder模块。现在我需要在其子模块中使用父级值,但我无法找到解决此问题的方法。 这是我的自定义模块类
父模块类:
class Wb_Custom_Module_Revision extends ET_Builder_Module {
function init () {
$this->name = __( 'Wb Revision Log', 'wb' );
$this->slug = 'et_pb_wb_revision';
$this->fb_support = true;
$this->child_slug = 'et_pb_wb_revision_child';
$this->child_item_text = esc_html__( 'Revision Item', 'et_builder' );
$this->whitelisted_fields = array('vertical_divider_line');
$this->fields_defaults = array(
'title' => array( 'Revision Log', 'add_default_setting' ),
);
$this->main_css_element = '%%order_class%%';
}
function get_fields () {
$fields = array(
'vertical_divider_line' => array(
'label' => __( 'Horizontal line', 'wb' ),
'type' => 'text',
'description' => __( 'Leave empty to not display', 'wb' ),
),
);
return $fields;
}
function shortcode_callback ( $atts, $content = null, $function_name ) {
//my shortcode function
return ;
}
}
new Wb_Custom_Module_Revision;
子模块类:
class Wb_Custom_Module_Revision_Item extends ET_Builder_Module {
function init() {
$this->name = esc_html__( 'Revision Item', 'et_builder' );
$this->slug = 'et_pb_wb_revision_child';
$this->fb_support = true;
$this->type = 'child';
$this->child_title_var = 'content_new';
function shortcode_callback( $atts, $content = null, $function_name ) {
//i need here it's parent "vertical_divider_line" field value.
return $output;
}
}
new Wb_Custom_Module_Revision_Item;
我的子模块shortcode_callback函数需要父模块字段值。 请帮我解决这个问题。 感谢
答案 0 :(得分:0)
您可以通过调用此类方法来获取父模块:
$parent_module = self::get_parent_modules('page')['et_pb_wb_revision'];
然后您可以获得所需的字段值:
$parent_module->shortcode_atts['vertical_divider_line'];
希望它有所帮助!