Files
carpseeds.pl/wp-content/plugins/jet-woo-builder/includes/widgets/archive-product/jet-woo-builder-archive-product-title.php
2024-07-15 11:28:08 +02:00

220 lines
5.4 KiB
PHP

<?php
/**
* Class: Jet_Woo_Builder_Archive_Product_Title
* Name: Title
* Slug: jet-woo-builder-archive-product-title
*/
namespace Elementor;
use Elementor\Group_Control_Border;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
class Jet_Woo_Builder_Archive_Product_Title extends Widget_Base {
private $source = false;
public function get_name() {
return 'jet-woo-builder-archive-product-title';
}
public function get_title() {
return esc_html__( 'Title', 'jet-woo-builder' );
}
public function get_icon() {
return 'jetwoobuilder-icon-13';
}
public function get_help_url() {
return 'https://crocoblock.com/knowledge-base/articles/woocommerce-jetwoobuilder-settings-how-to-create-and-set-a-custom-categories-archive-template/?utm_source=need-help&utm_medium=jet-woo-categories&utm_campaign=jetwoobuilder';
}
public function get_categories() {
return array( 'jet-woo-builder' );
}
public function show_in_panel() {
return jet_woo_builder()->documents->is_document_type( 'archive' );
}
protected function _register_controls() {
$css_scheme = apply_filters(
'jet-woo-builder/jet-archive-product-title/css-scheme',
array(
'title' => '.jet-woo-builder-archive-product-title'
)
);
$this->start_controls_section(
'section_general',
array(
'label' => __( 'Content', 'jet-woo-builder' ),
)
);
$this->add_control(
'is_linked',
array(
'label' => esc_html__( 'Add link to title', 'jet-woo-builder' ),
'type' => Controls_Manager::SWITCHER,
'label_on' => esc_html__( 'Yes', 'jet-woo-builder' ),
'label_off' => esc_html__( 'No', 'jet-woo-builder' ),
'return_value' => 'yes',
'default' => '',
)
);
$this->add_control(
'title_html_tag',
array(
'label' => esc_html__( 'Title HTML Tag', 'jet-cw' ),
'type' => Controls_Manager::SELECT,
'default' => 'h5',
'options' => jet_woo_builder_tools()->get_available_title_html_tags(),
)
);
$this->end_controls_section();
$this->start_controls_section(
'section_archive_title_style',
array(
'label' => esc_html__( 'Title', 'jet-woo-builder' ),
'tab' => Controls_Manager::TAB_STYLE,
'show_label' => false,
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'archive_title_typography',
'selector' => '{{WRAPPER}} ' . $css_scheme['title'],
)
);
$this->start_controls_tabs( 'tabs_archive_title_style' );
$this->start_controls_tab(
'tab_archive_title_normal',
array(
'label' => esc_html__( 'Normal', 'jet-woo-builder' ),
)
);
$this->add_control(
'archive_title_color_normal',
array(
'label' => esc_html__( 'Color', 'jet-woo-builder' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} ' . $css_scheme['title'] => 'color: {{VALUE}}',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_archive_title_hover',
array(
'label' => esc_html__( 'Hover', 'jet-woo-builder' ),
)
);
$this->add_control(
'archive_title_color_hover',
array(
'label' => esc_html__( 'Color', 'jet-woo-builder' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} ' . $css_scheme['title'] . ':hover a' => ' color: {{VALUE}}',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->add_responsive_control(
'archive_title_alignment',
array(
'label' => esc_html__( 'Alignment', 'jet-woo-builder' ),
'type' => Controls_Manager::CHOOSE,
'default' => 'left',
'options' => array(
'left' => array(
'title' => esc_html__( 'Left', 'jet-woo-builder' ),
'icon' => 'eicon-text-align-left',
),
'center' => array(
'title' => esc_html__( 'Center', 'jet-woo-builder' ),
'icon' => 'eicon-text-align-center',
),
'right' => array(
'title' => esc_html__( 'Right', 'jet-woo-builder' ),
'icon' => 'eicon-text-align-right',
),
),
'selectors' => array(
'{{WRAPPER}} ' . $css_scheme['title'] => 'text-align: {{VALUE}};',
),
'classes' => 'elementor-control-align',
)
);
$this->end_controls_section();
}
/**
* Returns CSS selector for nested element
*
* @param [type] $el [description]
* @return [type] [description]
*/
public function css_selector( $el = null ) {
return sprintf( '{{WRAPPER}} .%1$s %2$s', $this->get_name(), $el );
}
public static function render_callback( $settings = array() ) {
$open_link = '';
$close_link = '';
if ( isset( $settings['is_linked'] ) && 'yes' === $settings['is_linked'] ) {
$open_link = '<a href="' . get_permalink() . '">';
$close_link = '</a>';
}
echo '<' . $settings['title_html_tag'] . ' class="jet-woo-builder-archive-product-title">';
echo $open_link;
echo jet_woo_builder_template_functions()->get_product_title();
echo $close_link;
echo '</' . $settings['title_html_tag'] . '>';
}
protected function render() {
$settings = $this->get_settings();
$macros_settings = array(
'is_linked' => $settings['is_linked'],
'title_html_tag' => $settings['title_html_tag'],
);
if ( jet_woo_builder_tools()->is_builder_content_save() ) {
echo jet_woo_builder()->parser->get_macros_string( $this->get_name(), $macros_settings );
} else {
echo self::render_callback( $macros_settings );
}
}
}