get_border_style( $border ),
)
);
$button_attrs = sprintf( 'class="%1$s" style="%2$s"', esc_attr( $button_classes ), esc_attr( $button_styles ) );
$button = $url ? sprintf(
'%5$s',
$url,
$button_attrs,
esc_attr( $rel ),
esc_attr( $link_target ),
esc_html( $text )
) :
sprintf( '
%2$s
', $button_attrs, esc_html( $text ) );
return sprintf( '%3$s
', $classes, esc_attr( $id ), $button );
}
/**
* Register the block.
*/
public function block_registration() {
register_block_type(
TABLEBERG_DIR_PATH . 'build/button/block.json',
array(
'render_callback' => array( $this, 'render_tableberg_button_block' ),
)
);
}
}