File: /home/b/o/h/bohousj/www/wp-content/plugins/happy-elementor-addons-pro/wpml/advanced-tabs.php
<?php
/**
* Advanced Tabs integration
*/
namespace Happy_Addons_Pro;
defined( 'ABSPATH' ) || die();
class WPML_Advanced_Tabs extends \WPML_Elementor_Module_With_Items {
/**
* @return string
*/
public function get_items_field() {
return 'tabs';
}
/**
* @return array
*/
public function get_fields() {
return ['title','editor'];
}
/**
* @param string $field
*
* @return string
*/
protected function get_title( $field ) {
switch ( $field ) {
case 'title':
return __( 'Advanced Tabs: Title', 'happy-addons-pro' );
case 'editor':
return __( 'Advanced Tabs: Content Editor', 'happy-addons-pro' );
default:
return '';
}
}
/**
* @param string $field
*
* @return string
*/
protected function get_editor_type( $field ) {
switch ( $field ) {
case 'title':
return 'LINE';
case 'editor':
return 'VISUAL';
default:
return '';
}
}
}