Elementor\Control_Hover_Animation::content_template PHP Method

content_template() public method

public content_template ( )
    public function content_template()
    {
        ?>
		<div class="elementor-control-field">
			<label class="elementor-control-title">{{{ data.label }}}</label>
			<div class="elementor-control-input-wrapper">
				<select data-setting="{{ data.name }}">
					<option value=""><?php 
        _e('None', 'elementor');
        ?>
</option>
					<?php 
        foreach (self::get_animations() as $animation_name => $animation_title) {
            ?>
						<option value="<?php 
            echo $animation_name;
            ?>
"><?php 
            echo $animation_title;
            ?>
</option>
					<?php 
        }
        ?>
				</select>
			</div>
		</div>
		<# if ( data.description ) { #>
		<div class="elementor-control-description">{{{ data.description }}}</div>
		<# } #>
		<?php 
    }