PATH:
home
/
thebhoeo
/
.trash
/
woodmart
/
inc
/
modules
/
layouts
/
elementor
/
shop-archive
<?php /** * Woocommerce title map. * * @package Woodmart */ namespace XTS\Modules\Layouts; use Elementor\Controls_Manager; use Elementor\Group_Control_Typography; use Elementor\Plugin; use Elementor\Widget_Base; if ( ! defined( 'ABSPATH' ) ) { exit; // Direct access not allowed. } /** * Elementor widget that inserts an embeddable content into the page, from any given URL. */ class Woocommerce_Title extends Widget_Base { /** * Get widget name. * * @return string Widget name. */ public function get_name() { return 'wd_shop_archive_woocommerce_title'; } /** * Get widget content. * * @return string Widget title. */ public function get_title() { return esc_html__( 'Archive title', 'woodmart' ); } /** * Get widget icon. * * @return string Widget icon. */ public function get_icon() { return 'wd-icon-sa-woocommerce-title'; } /** * Get widget categories. * * @return array Widget categories. */ public function get_categories() { return array( 'wd-shop-archive-elements' ); } /** * Show in panel. * * @return bool Whether to show the widget in the panel or not. */ public function show_in_panel() { return Main::is_layout_type( 'shop_archive' ); } /** * Register the widget controls. */ protected function register_controls() { /** * Content tab */ /** * General settings */ $this->start_controls_section( 'general_content_section', array( 'label' => esc_html__( 'General', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'css_classes', array( 'type' => 'wd_css_class', 'default' => 'wd-woo-page-title', 'prefix_class' => '', ) ); $this->add_control( 'text_alignment', array( 'label' => esc_html__( 'Text alignment', 'woodmart' ), 'type' => 'wd_buttons', 'options' => array( 'left' => array( 'title' => esc_html__( 'Left', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/align/left.jpg', ), 'center' => array( 'title' => esc_html__( 'Center', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/align/center.jpg', ), 'right' => array( 'title' => esc_html__( 'Right', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/align/right.jpg', ), ), 'prefix_class' => 'text-', 'default' => 'left', ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'label' => esc_html__( 'Typography', 'woodmart' ), 'name' => 'typography', 'selector' => '{{WRAPPER}} .title', ) ); $this->add_control( 'text_color', array( 'label' => esc_html__( 'Text color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .title' => 'color: {{VALUE}}', ), ) ); $this->add_control( 'tag', array( 'label' => esc_html__( 'Title tag', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'h1' => esc_html__( 'h1', 'woodmart' ), 'h2' => esc_html__( 'h2', 'woodmart' ), 'h3' => esc_html__( 'h3', 'woodmart' ), 'h4' => esc_html__( 'h4', 'woodmart' ), 'h5' => esc_html__( 'h5', 'woodmart' ), 'h6' => esc_html__( 'h6', 'woodmart' ), 'p' => esc_html__( 'p', 'woodmart' ), 'div' => esc_html__( 'div', 'woodmart' ), 'span' => esc_html__( 'span', 'woodmart' ), ), 'default' => 'span', ) ); $this->end_controls_section(); } /** * Render the widget output on the frontend. */ protected function render() { $settings = wp_parse_args( $this->get_settings_for_display(), array( 'tag' => 'span', ) ); ?> <<?php echo esc_attr( $settings['tag'] ); ?> class="entry-title title"> <?php woocommerce_page_title(); ?> </<?php echo esc_attr( $settings['tag'] ); ?>> <?php } } Plugin::instance()->widgets_manager->register( new Woocommerce_Title() );
[-] class-archive-description.php
[edit]
[-] class-filters-area.php
[edit]
[-] class-woocommerce-title.php
[edit]
[-] class-result-count.php
[edit]
[-] class-extra-description.php
[edit]
[-] class-archive-products.php
[edit]
[-] class-filters-area-btn.php
[edit]
[-] class-orderby.php
[edit]
[-] class-per-page.php
[edit]
[-] class-active-filters.php
[edit]
[+]
..
[-] class-view.php
[edit]