You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
782 B
26 lines
782 B
<?php if ( ! defined('WOODMART_THEME_DIR')) exit('No direct script access allowed');
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* WPBakery Button element
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
if( ! class_exists( 'WOODMART_HB_Infobox' ) ) {
|
|
class WOODMART_HB_Infobox extends WOODMART_HB_Element {
|
|
|
|
public function __construct() {
|
|
|
|
$this->args = array(
|
|
'text' => esc_html__( 'Text with icon', 'woodmart' ),
|
|
'icon' => WOODMART_ASSETS_IMAGES . '/header-builder/icons/hb-ico-infobox.svg',
|
|
);
|
|
|
|
$this->vc_element = 'woodmart_info_box';
|
|
parent::__construct();
|
|
$this->template_name = 'info-box';
|
|
}
|
|
|
|
public function map() { }
|
|
}
|
|
}
|
|
|