Server IP : 192.64.112.168 / Your IP : 18.217.5.77 Web Server : Apache System : Linux nc-ph-2300-85.bluforrest.com 4.18.0-513.9.1.el8_9.x86_64 #1 SMP Sat Dec 2 05:23:44 EST 2023 x86_64 User : expressoneac ( 1128) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/expressoneac/www/wp-content/themes/woodmart/inc/modules/header-builder/elements/ |
Upload File : |
<?php if ( ! defined( 'WOODMART_THEME_DIR' ) ) { exit( 'No direct script access allowed' );} /** * ------------------------------------------------------------------------------------------------ * Languages. A few kinds of it. * ------------------------------------------------------------------------------------------------ */ if ( ! class_exists( 'WOODMART_HB_Languages' ) ) { class WOODMART_HB_Languages extends WOODMART_HB_Element { public function __construct() { parent::__construct(); $this->template_name = 'languages'; } public function map() { $this->args = array( 'type' => 'languages', 'title' => esc_html__( 'WPML Languages', 'woodmart' ), 'text' => esc_html__( 'Language selectors', 'woodmart' ), 'icon' => 'xts-i-translate', 'editable' => true, 'container' => false, 'edit_on_create' => true, 'drag_target_for' => array(), 'drag_source' => 'content_element', 'removable' => true, 'addable' => true, 'params' => array( 'show_language_flag' => array( 'id' => 'show_language_flag', 'title' => esc_html__( 'Show Flag', 'woodmart' ), 'description' => esc_html__( 'Show flag of languages', 'woodmart' ), 'type' => 'switcher', 'tab' => esc_html__( 'General', 'woodmart' ), 'value' => true, ), 'mouse_event' => array( 'id' => 'mouse_event', 'title' => esc_html__( 'Open on mouse event', 'woodmart' ), 'type' => 'selector', 'tab' => esc_html__( 'General', 'woodmart' ), 'value' => 'hover', 'options' => array( 'hover' => array( 'value' => 'hover', 'label' => esc_html__( 'Hover', 'woodmart' ), ), 'click' => array( 'value' => 'click', 'label' => esc_html__( 'Click', 'woodmart' ), ), ), ), 'color_scheme' => array( 'id' => 'color_scheme', 'title' => esc_html__( 'Text color scheme', 'woodmart' ), 'type' => 'selector', 'tab' => esc_html__( 'General', 'woodmart' ), 'value' => 'dark', 'options' => array( 'dark' => array( 'value' => 'dark', 'label' => esc_html__( 'Dark', 'woodmart' ), ), 'light' => array( 'value' => 'light', 'label' => esc_html__( 'Light', 'woodmart' ), ), ), 'description' => esc_html__( 'Select different text color scheme depending on your header background.', 'woodmart' ), ), ), ); } } }