49 lines
1.6 KiB
PHP
49 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace ElementorPro\Modules\LinkInBio\Widgets;
|
|
|
|
use ElementorPro\Modules\LinkInBio\Base\Widget_Link_In_Bio_Base_Pro;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
class Link_In_Bio_Var_5 extends Widget_Link_In_Bio_Base_Pro {
|
|
|
|
public static function get_configuration() {
|
|
$config = parent::get_configuration();
|
|
$config['content']['cta_section']['cta_has_image'] = true;
|
|
$config['content']['bio_section']['description']['default'] = '';
|
|
$config['content']['identity_section']['identity_image_style']['default'] = 'cover';
|
|
$config['content']['cta_section']['cta_repeater_defaults'] = [
|
|
[
|
|
'cta_link_text' => esc_html__( 'Get Healthy', 'elementor-pro' ),
|
|
],
|
|
[
|
|
'cta_link_text' => esc_html__( 'Top Recipes', 'elementor-pro' ),
|
|
],
|
|
[
|
|
'cta_link_text' => esc_html__( 'Meal Prep', 'elementor-pro' ),
|
|
],
|
|
[
|
|
'cta_link_text' => esc_html__( 'Resources', 'elementor-pro' ),
|
|
],
|
|
];
|
|
$config['style']['cta_section']['has_link_type'] = false;
|
|
$config['style']['cta_section']['has_corners'] = false;
|
|
$config['style']['cta_section']['has_padding'] = false;
|
|
$config['style']['cta_section']['has_border_control']['show_border_args']['condition'] = [];
|
|
$config['style']['cta_section']['has_border_control']['border_width_args']['condition'] = [];
|
|
$config['style']['cta_section']['has_border_control']['border_color_args']['condition'] = [];
|
|
|
|
return $config;
|
|
}
|
|
|
|
public function get_name(): string {
|
|
return 'link-in-bio-var-5';
|
|
}
|
|
|
|
public function get_title(): string {
|
|
return esc_html__( 'Services', 'elementor-pro' );
|
|
}
|
|
}
|