File: /home/bohousj/www/wp-content/plugins/happy-elementor-addons-pro/wpml/animated-text.php
<?php
/**
* Animated Text integration
*/
namespace Happy_Addons_Pro;
defined( 'ABSPATH' ) || die();
class WPML_Animated_Text extends \WPML_Elementor_Module_With_Items {
/**
* @return string
*/
public function get_items_field() {
return 'animated_text';
}
/**
* @return array
*/
public function get_fields() {
return ['text'];
}
/**
* @param string $field
*
* @return string
*/
protected function get_title( $field ) {
switch ( $field ) {
case 'text':
return __( 'Animated Text: Text', 'happy-addons-pro' );
default:
return '';
}
}
/**
* @param string $field
*
* @return string
*/
protected function get_editor_type( $field ) {
switch ( $field ) {
case 'text':
return 'LINE';
default:
return '';
}
}
}