<?php
$templates_df = ['0' => esc_html__('None', 'agenzio')];
$templates = $templates_df + agenzio_get_templates_option('page') ;
pxl_add_custom_widget(
array(
'name' => 'pxl_button',
'title' => esc_html__('Case Button', 'agenzio' ),
'icon' => 'eicon-button',
'categories' => array('pxltheme-core'),
'params' => array(
'sections' => array(
array(
'name' => 'section_content',
'label' => esc_html__('Content', 'agenzio' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'btn_style',
'label' => esc_html__('Type', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'btn-default',
'options' => [
'btn-default' => esc_html__('Default', 'agenzio' ),
'btn-outline' => esc_html__('Outline', 'agenzio' ),
'btn-outline-gradient' => esc_html__('Outline Gradient', 'agenzio' ),
'btn-stroke' => esc_html__('Stroke', 'agenzio' ),
'btn-style5' => esc_html__('Style5', 'agenzio' ),
'btn-style6' => esc_html__('Style6', 'agenzio' ),
],
),
array(
'name' => 'text',
'label' => esc_html__('Text', 'agenzio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => esc_html__('Click Here', 'agenzio'),
),
array(
'name' => 'btn_action',
'label' => esc_html__('Action', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'pxl-atc-link',
'options' => [
'pxl-atc-link' => esc_html__('Link', 'agenzio' ),
'pxl-atc-popup' => esc_html__('Popup', 'agenzio' ),
'pxl-atc-onepage' => esc_html__('Onepage', 'agenzio' ),
],
),
array(
'name' => 'onepage_offset',
'label' => esc_html__('Onepage Offset', 'agenzio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => '0',
'condition' => [
'btn_action' => ['pxl-atc-onepage'],
],
),
array(
'name' => 'link',
'label' => esc_html__('Link', 'agenzio' ),
'type' => \Elementor\Controls_Manager::URL,
'default' => [
'url' => '#',
],
'condition' => [
'btn_action' => ['pxl-atc-link','pxl-atc-onepage'],
],
),
array(
'name' => 'popup_template',
'label' => esc_html__('Select Popup Template', 'agenzio'),
'type' => 'select',
'options' => $templates,
'default' => 'df',
'description' => 'Add new tab template: "<a href="' . esc_url( admin_url( 'edit.php?post_type=pxl-template' ) ) . '" target="_blank">Click Here</a>"',
'condition' => [
'btn_action' => ['pxl-atc-popup'],
],
),
array(
'name' => 'align',
'label' => esc_html__('Alignment', 'agenzio' ),
'type' => \Elementor\Controls_Manager::CHOOSE,
'control_type' => 'responsive',
'options' => [
'left' => [
'title' => esc_html__('Left', 'agenzio' ),
'icon' => 'fa fa-align-left',
],
'center' => [
'title' => esc_html__('Center', 'agenzio' ),
'icon' => 'fa fa-align-center',
],
'right' => [
'title' => esc_html__('Right', 'agenzio' ),
'icon' => 'fa fa-align-right',
],
'justify' => [
'title' => esc_html__('Justified', 'agenzio' ),
'icon' => 'fa fa-align-justify',
],
],
'prefix_class' => 'elementor-align-',
'default' => '',
'selectors' => [
'{{WRAPPER}} .pxl-button' => 'text-align: {{VALUE}}',
],
),
array(
'name' => 'btn_icon',
'label' => esc_html__('Icon', 'agenzio' ),
'type' => \Elementor\Controls_Manager::ICONS,
'label_block' => true,
'fa4compatibility' => 'icon',
),
array(
'name' => 'icon_align',
'label' => esc_html__('Icon Position', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'left',
'options' => [
'left' => esc_html__('Before', 'agenzio' ),
'right' => esc_html__('After', 'agenzio' ),
],
),
),
),
array(
'name' => 'section_style_button',
'label' => esc_html__('Button Normal', 'agenzio' ),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
'controls' => array_merge(
array(
array(
'name' => 'color',
'label' => esc_html__('Color', 'agenzio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .pxl-button .btn' => 'color: {{VALUE}};',
],
),
array(
'name' => 'btn_bg_color',
'label' => esc_html__('Background Color', 'agenzio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .pxl-button .btn' => 'background-color: {{VALUE}};',
],
'condition' => [
'btn_style!' => ['btn-gradient-vertical','btn-gradient-horizontal'],
],
),
array(
'name' => 'color_from',
'label' => esc_html__( 'Gradient Color - From', 'agenzio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .pxl-button' => '--gradient-color-from: {{VALUE}};',
],
'condition' => [
'btn_style' => ['btn-gradient-vertical','btn-gradient-horizontal'],
],
),
array(
'name' => 'color_to',
'label' => esc_html__( 'Gradient Color - To', 'agenzio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .pxl-button' => '--gradient-color-to: {{VALUE}};',
],
'condition' => [
'btn_style' => ['btn-gradient-vertical','btn-gradient-horizontal'],
],
),
array(
'name' => 'btn_stroke_color',
'label' => esc_html__('Stroke Color', 'agenzio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .pxl-button .btn.btn-stroke .pxl-svg-line path' => 'stroke: {{VALUE}};',
],
'condition' => [
'btn_style' => ['btn-stroke'],
],
),
array(
'name' => 'btn_typography',
'label' => esc_html__('Typography', 'agenzio' ),
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .pxl-button .btn',
),
array(
'name' => 'btn_box_shadow',
'label' => esc_html__( 'Box Shadow', 'agenzio' ),
'type' => \Elementor\Group_Control_Box_Shadow::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .pxl-button .btn',
),
array(
'name' => 'border_type',
'label' => esc_html__( 'Border Type', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'' => esc_html__( 'None', 'agenzio' ),
'solid' => esc_html__( 'Solid', 'agenzio' ),
'double' => esc_html__( 'Double', 'agenzio' ),
'dotted' => esc_html__( 'Dotted', 'agenzio' ),
'dashed' => esc_html__( 'Dashed', 'agenzio' ),
'groove' => esc_html__( 'Groove', 'agenzio' ),
],
'selectors' => [
'{{WRAPPER}} .pxl-button .btn' => 'border-style: {{VALUE}} !important;',
],
'condition' => [
'btn_style' => ['btn-default','btn-outline','btn-style5'],
],
),
array(
'name' => 'border_width',
'label' => esc_html__( 'Border Width', 'agenzio' ),
'type' => \Elementor\Controls_Manager::DIMENSIONS,
'selectors' => [
'{{WRAPPER}} .pxl-button .btn' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
],
'condition' => [
'border_type!' => '',
'btn_style' => ['btn-default','btn-outline','btn-style5'],
],
'responsive' => true,
),
array(
'name' => 'border_color',
'label' => esc_html__( 'Border Color', 'agenzio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .pxl-button .btn' => 'border-color: {{VALUE}} !important;',
],
'condition' => [
'border_type!' => '',
'btn_style' => ['btn-default','btn-outline','btn-style5'],
],
),
array(
'name' => 'border_width_outline_gradient',
'label' => esc_html__('Broder Width Gradient', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 300,
],
],
'selectors' => [
'{{WRAPPER}} .pxl-button .btn.btn-outline-gradient:after' => 'top: {{SIZE}}{{UNIT}};right: {{SIZE}}{{UNIT}};bottom: {{SIZE}}{{UNIT}};left: {{SIZE}}{{UNIT}};',
],
'condition' => [
'btn_style' => ['btn-outline-gradient'],
],
),
),
agenzio_widget_gradient_color([
'prefix' => 'border',
'label' => 'Border',
'selectors_class' => '.pxl-button .btn.btn-outline-gradient',
'condition' => ['btn_style' => ['btn-outline-gradient']]
]),
array(
array(
'name' => 'btn_border_radius',
'label' => esc_html__('Border Radius', 'agenzio' ),
'type' => \Elementor\Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .pxl-button .btn' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
),
array(
'name' => 'btn_padding',
'label' => esc_html__('Padding', 'agenzio' ),
'type' => \Elementor\Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .pxl-button .btn' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'control_type' => 'responsive',
),
)
),
),
array(
'name' => 'section_style_button_hover',
'label' => esc_html__('Button Hover', 'agenzio' ),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
'controls' => array(
array(
'name' => 'btn_text_effect',
'label' => esc_html__('Text Effect', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '',
'options' => [
'' => esc_html__('Default', 'agenzio' ),
'btn-text-nina' => esc_html__('Nina', 'agenzio' ),
'btn-text-nanuk' => esc_html__('Nanuk', 'agenzio' ),
'btn-text-smoke' => esc_html__('Smoke', 'agenzio' ),
'btn-text-reverse' => esc_html__('Reverse', 'agenzio' ),
'btn-text-parallax' => esc_html__('Text Parallax', 'agenzio' ),
],
'condition' => [
'btn_style' => ['btn-default','btn-outline','btn-outline-gradient','btn-white-effect','btn-gradient-vertical','btn-gradient-horizontal'],
],
),
array(
'name' => 'transition_duration',
'label' => esc_html__('Transition Duration', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 100000,
],
],
'selectors' => [
'{{WRAPPER}} .btn.btn-text-reverse .pxl-text--inner span' => 'transition-duration: {{SIZE}}ms;',
],
'condition' => [
'btn_text_effect' => ['btn-text-reverse'],
],
'description' => 'Enter number, unit is ms.',
),
array(
'name' => 'color_hover',
'label' => esc_html__('Color Hover', 'agenzio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .pxl-button .btn:hover' => 'color: {{VALUE}};',
'{{WRAPPER}} .pxl-button .btn:hover i' => 'color: {{VALUE}};',
],
),
array(
'name' => 'btn_bg_color_hover',
'label' => esc_html__('Background Color', 'agenzio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .pxl-button .btn:hover' => 'background-color: {{VALUE}};',
'{{WRAPPER}} .pxl-button .btn:hover::after' => 'background: {{VALUE}};',
],
'condition' => [
'btn_style!' => ['btn-gradient-vertical','btn-gradient-horizontal'],
],
),
array(
'name' => 'border_color_hover',
'label' => esc_html__( 'Border Color Hover', 'agenzio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .pxl-button .btn:hover' => 'border-color: {{VALUE}} !important;',
],
),
array(
'name' => 'btn_box_shadow_hover',
'label' => esc_html__( 'Box Shadow', 'agenzio' ),
'type' => \Elementor\Group_Control_Box_Shadow::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .pxl-button .btn:hover',
),
),
),
array(
'name' => 'section_style_icon',
'label' => esc_html__('Icon', 'agenzio' ),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
'controls' => array(
array(
'name' => 'icon_color',
'label' => esc_html__('Color', 'agenzio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .pxl-button .btn i' => 'color: {{VALUE}};',
],
),
array(
'name' => 'icon_font_size',
'label' => esc_html__('Font Size', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 300,
],
],
'selectors' => [
'{{WRAPPER}} .pxl-button .btn i' => 'font-size: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'icon_space_left',
'label' => esc_html__('Icon Spacer Left', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 300,
],
],
'default' => [
'size' => 9,
],
'selectors' => [
'{{WRAPPER}} .pxl-button .pxl-icon--left i, {{WRAPPER}} .pxl-button .pxl-icon--left svg' => 'margin-right: {{SIZE}}{{UNIT}};',
],
'condition' => [
'icon_align' => ['left'],
],
),
array(
'name' => 'icon_margin',
'label' => esc_html__('Icon Margin', 'agenzio' ),
'type' => \Elementor\Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .pxl-button i' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'control_type' => 'responsive',
),
array(
'name' => 'icon_space_right',
'label' => esc_html__('Icon Spacer', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 300,
],
],
'default' => [
'size' => 9,
],
'selectors' => [
'{{WRAPPER}} .pxl-button .pxl-icon--right i, {{WRAPPER}} .pxl-button .pxl-icon--right svg' => 'margin-left: {{SIZE}}{{UNIT}};',
],
'condition' => [
'icon_align' => ['right'],
],
),
),
),
agenzio_widget_animation_settings(),
),
),
),
agenzio_get_class_widget_path()
); Back to Directory