start_controls_section( 'featured', [ 'label' => esc_html__('Featured Service Content', 'business-roy'), ] ); $this->add_control( 'graphic_element',[ 'label' => esc_html__( 'Graphic Element', 'business-roy' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'none' => [ 'title' => esc_html__( 'None', 'business-roy' ), 'icon' => 'eicon-ban', ], 'both' => [ 'title' => esc_html__( 'Image/Icon', 'business-roy' ), 'icon' => 'eicon-image-before-after', ], 'image' => [ 'title' => esc_html__( 'Image', 'business-roy' ), 'icon' => 'eicon-image-bold', ], 'icon' => [ 'title' => esc_html__( 'Icon', 'business-roy' ), 'icon' => 'eicon-star', ], ], 'default' => 'both', ] ); $this->add_control( 'layout', [ 'label' => esc_html__('Layout', 'business-roy'), 'type' => Controls_Manager::SELECT, 'default' => 'style1', 'label_block' => true, 'separator' => 'before', 'options' => [ 'style1' => esc_html__('Style 1', 'business-roy'), 'style2' => esc_html__('Style 2', 'business-roy'), ], 'condition' => [ 'graphic_element' => ['both','image'], ], ] ); $this->add_responsive_control( 'image_height2', [ 'label' => esc_html__('Image Height', 'business-roy'), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'range' => [ 'px' => [ 'min' => 320, 'max' => 750, 'step' => 10 ], ], 'default' => [ 'unit' => 'px', 'size' => '400', ], 'selectors' => [ '{{WRAPPER}} .iktheme-imageicon-box-wrapper.style2 .iktheme-imageicon-box-img img' => 'height: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'layout' => ['style2'], ], ] ); $this->add_control( 'graphic_image',[ 'label' => esc_html__( 'Choose Image', 'business-roy' ), 'type' => Controls_Manager::MEDIA, 'default' => [ 'url' => Utils::get_placeholder_image_src(), ], 'condition' => [ 'graphic_element' => [ 'both', 'image' ], ], 'show_label' => false, ] ); $this->add_group_control( Group_Control_Image_Size::get_type(),[ 'name' => 'graphic_image', // Actually its `image_size` 'default' => 'full', 'condition' => [ 'graphic_element' => [ 'both', 'image' ], 'graphic_image[id]!' => '', ], ] ); $this->add_control( 'graphic_icon',[ 'label' => esc_html__( 'Icon', 'business-roy' ), 'type' => Controls_Manager::ICONS, 'default' => [ 'value' => 'fa-solid fa-bezier-curve', 'library' => 'fa-solid', ], 'condition' => [ 'graphic_element' => [ 'both', 'icon' ], ], ] ); $this->add_control( 'title', [ 'label' => esc_html__('Title', 'business-roy'), 'type' => Controls_Manager::TEXT, 'label_block' => true, 'default' => esc_html__('Your Service Heading Title', 'business-roy') ] ); $this->add_control( 'title_tag', [ 'label' => esc_html__('Title HTML Tag', 'business-roy'), 'type' => Controls_Manager::SELECT, 'label_block' => true, 'default' => 'h3', 'options' => [ 'h1' => esc_html__('H1', 'business-roy'), 'h2' => esc_html__('H2', 'business-roy'), 'h3' => esc_html__('H3', 'business-roy'), 'h4' => esc_html__('H4', 'business-roy'), 'h5' => esc_html__('H5', 'business-roy'), 'h6' => esc_html__('H6', 'business-roy'), 'div' => esc_html__('div', 'business-roy'), 'span' => esc_html__('span', 'business-roy'), 'p' => esc_html__('p', 'business-roy') ], ] ); $this->add_control( 'description', [ 'label' => esc_html__('Short Description', 'business-roy'), 'type' => Controls_Manager::TEXTAREA, 'rows' => 10, 'placeholder' => esc_html__('Type your description here', 'business-roy'), 'label_block' => true, 'default' => esc_html__('End your search here! Unlock Our Premium Themes to launch your website. All themes are user-friendly and fully customizable.', 'business-roy') ] ); $this->add_control( 'button', [ 'label' => esc_html__('Button Text', 'business-roy'), 'type' => Controls_Manager::TEXT, 'label_block' => true, 'default' => esc_html__('Read More', 'business-roy') ] ); $this->add_control( 'link_icon',[ 'label' => esc_html__( 'Link Icon', 'business-roy' ), 'type' => Controls_Manager::ICONS, 'skin' => 'inline', 'label_block' => false, 'default' => [ 'library' => 'fa-solid', 'value' => 'fas fa-long-arrow-alt-right', ], 'skin_settings' => [ 'inline' => [ 'none' => [ 'label' => 'Default', 'icon' => '', ], 'icon' => [ 'icon' => 'eicon-long-arrow-right', ], ], ], 'recommended' => [ 'fa-regular' => [ 'arrow-alt-circle-right', ], 'fa-solid' => [ 'angle-double-right', 'angle-right', 'arrow-alt-circle-right', 'arrow-circle-right', 'arrow-right', 'caret-right', 'chevron-circle-right', 'chevron-right', 'long-arrow-alt-right', ], ], 'condition' => [ 'button!' => '', ], ] ); $this->add_control( 'link',[ 'label' => esc_html__( 'Link', 'business-roy' ), 'type' => Controls_Manager::URL, 'default' => [ 'url' => '#', 'is_external' => false, 'nofollow' => false, ], ] ); $this->add_control( 'link_click',[ 'label' => esc_html__( 'Apply Link On', 'business-roy' ), 'type' => Controls_Manager::SELECT, 'options' => [ 'box' => esc_html__( 'Whole Box', 'business-roy' ), 'button' => esc_html__( 'Button Only', 'business-roy' ), ], 'default' => 'button', 'condition' => [ 'link[url]!' => '', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'item_settings', [ 'label' => esc_html__('General Style', 'business-roy'), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'layout_position',[ 'label' => esc_html__( 'Position', 'business-roy' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__( 'Left', 'business-roy' ), 'icon' => 'eicon-h-align-left', ], 'above' => [ 'title' => esc_html__( 'Above', 'business-roy' ), 'icon' => 'eicon-v-align-top', ], 'right' => [ 'title' => esc_html__( 'Right', 'business-roy' ), 'icon' => 'eicon-h-align-right', ], 'below' => [ 'title' => esc_html__( 'Below', 'business-roy' ), 'icon' => 'eicon-v-align-bottom', ], ], 'selectors_dictionary' => [ 'above' => 'flex-direction: column;', 'below' => 'flex-direction: column-reverse;', 'left' => 'flex-direction: row;', 'right' => 'flex-direction: row-reverse;', ], 'selectors' => [ '{{WRAPPER}} .iktheme-imageicon-box-wrapper' => '{{VALUE}}', ], 'prefix_class' => 'iktheme-imageicon-layout-', 'conditions' => [ 'relation' => 'and', 'terms' => [ [ 'name' => 'layout', 'operator' => '==', 'value' => 'style1', ], [ 'relation' => 'or', 'terms' => [ [ 'name' => 'graphic_element', 'operator' => '==', 'value' => 'both', ], [ 'name' => 'graphic_element', 'operator' => '==', 'value' => 'image', ], [ 'name' => 'graphic_element', 'operator' => '==', 'value' => 'icon', ], ], ], ], ], ] ); $this->add_responsive_control( 'content_vertical_alignment',[ 'label' => esc_html__( 'Vertical Alignment', 'business-roy' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'top' => [ 'title' => esc_html__( 'Top', 'business-roy' ), 'icon' => 'eicon-v-align-top', ], 'middle' => [ 'title' => esc_html__( 'Middle', 'business-roy' ), 'icon' => 'eicon-v-align-middle', ], 'bottom' => [ 'title' => esc_html__( 'Bottom', 'business-roy' ), 'icon' => 'eicon-v-align-bottom', ], ], 'default' => 'middle', 'toggle' => false, 'selectors' => [ '{{WRAPPER}} .iktheme-imageicon-box-wrapper' => 'align-items: {{VALUE}};', ], 'selectors_dictionary' => [ 'top' => 'flex-start', 'middle' => 'center', 'bottom' => 'flex-end', ], 'conditions' => [ 'relation' => 'and', 'terms' => [ [ 'name' => 'layout', 'operator' => '==', 'value' => 'style1', ], [ 'relation' => 'or', 'terms' => [ [ 'name' => 'layout_position', 'operator' => '==', 'value' => 'left', ], [ 'name' => 'layout_position', 'operator' => '==', 'value' => 'right', ], ], ], ], ], ] ); $this->add_responsive_control( 'text_align',[ 'label' => esc_html__( 'Alignment', 'business-roy' ), 'type' => Controls_Manager::CHOOSE, 'default' => 'center', 'options' => [ 'start' => [ 'title' => esc_html__( 'Left', 'business-roy' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__( 'Center', 'business-roy' ), 'icon' => 'eicon-text-align-center', ], 'end' => [ 'title' => esc_html__( 'Right', 'business-roy' ), 'icon' => 'eicon-text-align-right', ], ], 'selectors' => [ '{{WRAPPER}} .iktheme-imageicon-box-content, {{WRAPPER}} .iktheme-imageicon-box-wrapper.icon' => 'text-align: {{VALUE}};', ], ] ); $this->add_responsive_control( 'item_space',[ 'label' => esc_html__( 'Content Spacing', 'business-roy' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', 'em', 'rem', 'custom' ], 'range' => [ 'px' => [ 'max' => 100, ], 'em' => [ 'min' => 0, 'max' => 10, ], 'rem' => [ 'min' => 0, 'max' => 10, ], ], 'selectors' => [ '{{WRAPPER}} .iktheme-imageicon-box-content' => 'gap: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'item_padding', [ 'label' => esc_html__('Padding', 'business-roy'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%', 'em'], 'selectors' => [ '{{WRAPPER}} .iktheme-imageicon-box-content, {{WRAPPER}} .iktheme-imageicon-box-wrapper.icon' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'item_radius', [ 'label' => esc_html__('Radius', 'business-roy'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%', 'em'], 'selectors' => [ '{{WRAPPER}} .iktheme-imageicon-box-wrapper, {{WRAPPER}} .iktheme-imageicon-box-wrapper.style2 .iktheme-imageicon-box-content' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->end_controls_section(); // Desing (Style) $this->start_controls_section( 'section_style_image',[ 'label' => esc_html__( 'Image', 'business-roy' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'graphic_element' => [ 'both', 'image' ], ], ] ); $this->add_responsive_control( 'image_width',[ 'label' => esc_html__( 'Width', 'business-roy' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => '', 'unit' => '%', ], 'tablet_default' => [ 'size' => 100, 'unit' => '%', ], 'mobile_default' => [ 'size' => 100, 'unit' => '%', ], 'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ], 'range' => [ '%' => [ 'min' => 5, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .iktheme-image-box-img' => 'width: {{SIZE}}{{UNIT}};' ], ] ); $this->add_responsive_control( 'image_height',[ 'label' => esc_html__( 'Height', 'business-roy' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => '', 'unit' => 'px', ], 'tablet_default' => [ 'size' => '', 'unit' => 'px', ], 'mobile_default' => [ 'size' => '', 'unit' => 'px', ], 'size_units' => [ 'px', 'em', 'rem', 'vw', 'custom' ], 'range' => [ 'px' => [ 'min' => 5, 'max' => 900, ], ], 'selectors' => [ '{{WRAPPER}} .iktheme-image-box-img img' => 'height: {{SIZE}}{{UNIT}}; object-fit: cover;', ] ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'image_border', 'selector' => '{{WRAPPER}} .iktheme-image-box-img img', 'separator' => 'before', ] ); $this->add_responsive_control( 'image_border_radius',[ 'label' => esc_html__( 'Border Radius', 'business-roy' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ], 'separator' => 'after', 'selectors' => [ '{{WRAPPER}} .iktheme-image-box-img img' => 'border-radius: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'image_hover_heading',[ 'type' => Controls_Manager::HEADING, 'label' => esc_html__( 'Hover Effects', 'business-roy' ), ] ); $this->add_control( 'image_hover_transformation',[ 'label' => esc_html__( 'Hover Animation', 'business-roy' ), 'type' => Controls_Manager::SELECT, 'options' => [ '' => 'None', 'zoom-in' => 'Zoom In', 'zoom-out' => 'Zoom Out', 'move-left' => 'Move Left', 'move-right' => 'Move Right', 'move-up' => 'Move Up', 'move-down' => 'Move Down', ], 'default' => 'zoom-in', 'prefix_class' => 'ikreatethemes-bg-transform ikreatethemes-bg-transform-', ] ); $this->add_control( 'image_effect_duration',[ 'label' => esc_html__( 'Transition Duration', 'business-roy' ) . ' (ms)', 'type' => Controls_Manager::SLIDER, 'render_type' => 'template', 'default' => [ 'size' => 1500, ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 3000, 'step' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .iktheme-image-wrap' => 'transition-duration: {{SIZE}}ms', ], 'separator' => 'before', ] ); $this->start_controls_tabs( 'image_effects_tabs' ); $this->start_controls_tab( 'image_normal',[ 'label' => esc_html__( 'Normal', 'business-roy' ), ] ); $this->add_group_control( Group_Control_Css_Filter::get_type(),[ 'name' => 'image_bg_filters', 'selector' => '{{WRAPPER}} .iktheme-image-box-img img', ] ); $this->add_control( 'image_opacity',[ 'label' => esc_html__( 'Opacity', 'business-roy' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'max' => 1, 'min' => 0.10, 'step' => 0.01, ], ], 'selectors' => [ '{{WRAPPER}} .iktheme-image-box-img img' => 'opacity: {{SIZE}};', ], ] ); $this->end_controls_tab(); $this->start_controls_tab( 'image_hover',[ 'label' => esc_html__( 'Hover', 'business-roy' ), ] ); $this->add_group_control( Group_Control_Css_Filter::get_type(),[ 'name' => 'image_bg_filters_hover', 'selector' => '{{WRAPPER}}:hover .iktheme-image-box-img img', ] ); $this->add_control( 'image_opacity_hover',[ 'label' => esc_html__( 'Opacity', 'business-roy' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'max' => 1, 'min' => 0.10, 'step' => 0.01, ], ], 'selectors' => [ '{{WRAPPER}}:hover .iktheme-image-box-img img' => 'opacity: {{SIZE}};', ], ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); $this->start_controls_section( 'icon_style', [ 'label' => esc_html__('Icon', 'business-roy'), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'graphic_element' => [ 'both', 'icon' ], ], ] ); $this->add_responsive_control( 'icon_size', [ 'label' => esc_html__('Icon Size', 'business-roy'), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'range' => [ 'px' => [ 'min' => 10, 'max' => 300, 'step' => 1, ] ], 'default' => [ 'unit' => 'px', 'size' => 65, ], 'selectors' => [ '{{WRAPPER}} .iktheme-icon-box-icon' => 'font-size: {{SIZE}}{{UNIT}};' ], ] ); $this->add_responsive_control( 'icon_padding', [ 'label' => esc_html__('Padding', 'business-roy'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%', 'em'], 'selectors' => [ '{{WRAPPER}} .iktheme-icon-box-icon' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ] ] ); $this->add_responsive_control( 'icon_radius', [ 'label' => esc_html__('Radius', 'business-roy'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%', 'em'], 'selectors' => [ '{{WRAPPER}} .iktheme-icon-box-icon' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ] ] ); $this->start_controls_tabs( 'icon_button_tabs' ); $this->start_controls_tab( 'icon_normal',[ 'label' => esc_html__( 'Normal', 'business-roy' ), ] ); $this->add_control( 'icon_color', [ 'label' => esc_html__('Color', 'business-roy'), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .iktheme-icon-box-icon' => 'color: {{VALUE}}', '{{WRAPPER}} .iktheme-icon-box-icon' => 'fill: {{VALUE}}', ], ] ); $this->add_control( 'icon_bg_color', [ 'label' => esc_html__('Background Color', 'business-roy'), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .iktheme-icon-box-icon' => 'background-color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Border::get_type(),[ 'name' => 'icon_border', 'selector' => '{{WRAPPER}} .iktheme-icon-box-icon', 'default' => 'none', ] ); $this->end_controls_tab(); $this->start_controls_tab( 'icon_hover',[ 'label' => esc_html__( 'Hover', 'business-roy' ), ] ); $this->add_control( 'icon_hover_color', [ 'label' => esc_html__('Color', 'business-roy'), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .iktheme-icon-box-icon:hover' => 'color: {{VALUE}}', '{{WRAPPER}} .iktheme-icon-box-icon:hover' => 'fill: {{VALUE}}', ], ] ); $this->add_control( 'icon_hover_bg_color', [ 'label' => esc_html__('Background Color', 'business-roy'), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .iktheme-icon-box-icon:hover' => 'background-color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Border::get_type(),[ 'name' => 'icon_hover_border', 'selector' => '{{WRAPPER}} .iktheme-icon-box-icon:hover', 'default' => 'none', ] ); $this->add_control( 'icon_hover_animation',[ 'label' => esc_html__( 'Hover Animation', 'business-roy' ), 'type' => Controls_Manager::HOVER_ANIMATION, ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->add_responsive_control( 'icon_margin', [ 'label' => esc_html__('Margin', 'business-roy'), 'type' => Controls_Manager::DIMENSIONS, 'allowed_dimensions' => 'vertical', 'size_units' => ['px', '%', 'em'], 'selectors' => [ '{{WRAPPER}} .iktheme-icon-box-wrap' => 'margin: {{TOP}}{{UNIT}} 0 {{BOTTOM}}{{UNIT}} 0; z-index: 9;', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'title_style', [ 'label' => esc_html__('Title', 'business-roy'), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'title_color', [ 'label' => esc_html__('Color', 'business-roy'), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .iktheme-box-title' => 'color: {{VALUE}}', '{{WRAPPER}} .iktheme-box-title a' => 'color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'title_typography', 'label' => esc_html__('Typography', 'business-roy'), 'selector' => '{{WRAPPER}} .iktheme-box-title', ] ); $this->add_group_control( Group_Control_Text_Stroke::get_type(),[ 'name' => 'text_stroke', 'selector' => '{{WRAPPER}} .iktheme-box-title', ] ); $this->add_group_control( Group_Control_Text_Shadow::get_type(),[ 'name' => 'title_shadow', 'selector' => '{{WRAPPER}} .iktheme-box-title', ] ); $this->add_responsive_control( 'title_margin', [ 'label' => esc_html__('Margin', 'business-roy'), 'type' => Controls_Manager::DIMENSIONS, 'allowed_dimensions' => 'vertical', 'size_units' => ['px', '%', 'em'], 'selectors' => [ '{{WRAPPER}} .iktheme-box-title' => 'margin: {{TOP}}{{UNIT}} 0 {{BOTTOM}}{{UNIT}} 0; z-index: 9;', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'content_style', [ 'label' => esc_html__('Content', 'business-roy'), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'content_color', [ 'label' => esc_html__('Color', 'business-roy'), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .iktheme-box-description' => 'color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'content_typography', 'label' => esc_html__('Typography', 'business-roy'), 'selector' => '{{WRAPPER}} .iktheme-box-description', ] ); $this->add_group_control( Group_Control_Text_Shadow::get_type(),[ 'name' => 'content_shadow', 'selector' => '{{WRAPPER}} .iktheme-box-description', ] ); $this->add_responsive_control( 'content_margin', [ 'label' => esc_html__('Margin', 'business-roy'), 'type' => Controls_Manager::DIMENSIONS, 'allowed_dimensions' => 'vertical', 'size_units' => ['px', '%', 'em'], 'selectors' => [ '{{WRAPPER}} .iktheme-box-description' => 'margin: {{TOP}}{{UNIT}} 0 {{BOTTOM}}{{UNIT}} 0; z-index: 9;', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'content_button',[ 'label' => esc_html__( 'Button', 'business-roy' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'button!' => '', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(),[ 'name' => 'button_typography', 'selector' => '{{WRAPPER}} .iktheme-button', ] ); $this->add_group_control( Group_Control_Text_Shadow::get_type(),[ 'name' => 'button_text_shadow', 'selector' => '{{WRAPPER}} .iktheme-button', ] ); $this->add_responsive_control( 'button_padding',[ 'label' => esc_html__( 'Padding', 'business-roy' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ], 'selectors' => [ '{{WRAPPER}} .iktheme-button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'button_border_radius',[ 'label' => esc_html__( 'Border Radius', 'business-roy' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ], 'range' => [ 'px' => [ 'max' => 100, ], 'em' => [ 'max' => 10, ], 'rem' => [ 'max' => 10, ], ], 'selectors' => [ '{{WRAPPER}} .iktheme-button' => 'border-radius: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'heading_primary_button',[ 'type' => Controls_Manager::HEADING, 'label' => esc_html__( 'Primary Button', 'business-roy' ), 'separator' => 'before', ] ); $this->start_controls_tabs( 'primary_button_tabs' ); $this->start_controls_tab( 'normal',[ 'label' => esc_html__( 'Normal', 'business-roy' ), ] ); $this->add_control( 'button_text_color',[ 'label' => esc_html__( 'Text Color', 'business-roy' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .iktheme-button, {{WRAPPER}} .iktheme-button.iktheme-button-noborder .iktheme-link-icon svg' => 'color: {{VALUE}}; fill: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Background::get_type(),[ 'name' => 'button_background', 'types' => [ 'classic', 'gradient' ], 'exclude' => [ 'image' ], 'selector' => '{{WRAPPER}} .iktheme-button', 'fields_options' => [ 'background' => [ 'default' => 'classic', ], ], ] ); $this->add_group_control( Group_Control_Border::get_type(),[ 'name' => 'button_border_color', 'selector' => '{{WRAPPER}} .iktheme-button', 'default' => 'none', ] ); $this->end_controls_tab(); $this->start_controls_tab( 'hover',[ 'label' => esc_html__( 'Hover', 'business-roy' ), ] ); $this->add_control( 'button_hover_text_color',[ 'label' => esc_html__( 'Text Color', 'business-roy' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .iktheme-button:hover, {{WRAPPER}} .iktheme-button.iktheme-button-noborder:hover .iktheme-link-icon svg' => 'color: {{VALUE}}; fill: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Background::get_type(),[ 'name' => 'button_hover_background', 'types' => [ 'classic', 'gradient' ], 'exclude' => [ 'image' ], 'selector' => '{{WRAPPER}} .iktheme-button.iktheme-button-noborder::before', 'fields_options' => [ 'background' => [ 'default' => 'classic', ], ], ] ); $this->add_group_control( Group_Control_Border::get_type(),[ 'name' => 'button_hover_border_color', 'selector' => '{{WRAPPER}} .iktheme-button:hover', 'default' => 'none', ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); } /** Render Layout */ protected function render() { $settings = $this->get_settings_for_display(); $wrapper_tag = 'div'; $button_tag = 'a'; $title_tag = Utils::validate_html_tag( $settings['title_tag'] ); $this->add_render_attribute('wrapper', 'class', [ 'iktheme-imageicon-box-wrapper', $settings['graphic_element'], $settings['layout'], ] ); $this->add_render_attribute( 'graphic_image', 'class', ['iktheme-imageicon-box-img','iktheme-image-box-img'] ); $this->add_render_attribute( 'image_wrap', 'class', ['iktheme-image-wrap','ikreatethemes-bg'] ); $this->add_render_attribute( 'graphic_icon', 'class', ['iktheme-icon-box-wrap', 'elementor-animation-' . $settings['icon_hover_animation']] ); $this->add_render_attribute( 'title', 'class', ['iktheme-box-title'] ); $this->add_render_attribute( 'description', 'class', ['iktheme-box-description'] ); $this->add_render_attribute( 'button_wrap', 'class', ['iktheme-button-wrap'] ); $this->add_render_attribute( 'button', 'class', ['iktheme-link'] ); $this->add_render_attribute( 'onlybutton', 'class', ['iktheme-button','iktheme-button-noborder'] ); if ( ! empty( $settings['link']['url'] ) ) { $link_element = 'button'; $link_button = 'onlybutton'; if ( 'box' === $settings['link_click'] ) { $wrapper_tag = 'a'; $button_tag = 'div'; $link_element = 'wrapper'; $link_button = 'wrapper1'; } $this->add_link_attributes( $link_element, $settings['link'] ); $this->add_link_attributes( $link_button, $settings['link'] ); } ?> < print_render_attribute_string( 'wrapper' ); ?>>
print_render_attribute_string( 'graphic_image' ); ?>>
print_render_attribute_string( 'image_wrap' ); ?>> < print_render_attribute_string( 'button' ); ?>> >
print_render_attribute_string( 'graphic_icon' ); ?>>
'true']); ?>
< print_render_attribute_string( 'title' ); ?>> < print_render_attribute_string( 'button' ); ?>> print_unescaped_setting( 'title' ); ?> > >
print_render_attribute_string( 'description' ); ?>> print_unescaped_setting( 'description' ); ?>
print_render_attribute_string( 'button_wrap' ); ?>> < print_render_attribute_string( 'onlybutton' ); ?>> print_unescaped_setting( 'button' ); ?> 'true']); ?> >
print_render_attribute_string( 'graphic_image' ); ?>>
print_render_attribute_string( 'image_wrap' ); ?>> < print_render_attribute_string( 'button' ); ?>> >
print_render_attribute_string( 'graphic_icon' ); ?>>
'true']); ?>
print_render_attribute_string( 'graphic_icon' ); ?>>
'true']); ?>
< print_render_attribute_string( 'title' ); ?>> < print_render_attribute_string( 'button' ); ?>> print_unescaped_setting( 'title' ); ?> > >
print_render_attribute_string( 'description' ); ?>> print_unescaped_setting( 'description' ); ?>
print_render_attribute_string( 'button_wrap' ); ?>> < print_render_attribute_string( 'onlybutton' ); ?>> print_unescaped_setting( 'button' ); ?> 'true']); ?> >
>