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.
27 lines
786 B
27 lines
786 B
<?php if ( ! defined('WOODMART_THEME_DIR')) exit('No direct script access allowed');
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* WPBakery Social buttons element
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
if( ! class_exists( 'WOODMART_HB_Social' ) ) {
|
|
class WOODMART_HB_Social extends WOODMART_HB_Element {
|
|
|
|
public function __construct() {
|
|
|
|
$this->args = array(
|
|
'text' => esc_html__( 'Social links icons', 'woodmart' ),
|
|
'icon' => WOODMART_ASSETS_IMAGES . '/header-builder/icons/hb-ico-social.svg',
|
|
);
|
|
|
|
$this->vc_element = 'social_buttons';
|
|
parent::__construct();
|
|
$this->template_name = 'social';
|
|
}
|
|
|
|
public function map() {}
|
|
|
|
}
|
|
}
|
|
|