first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
/**
* Dropbar button template
*/
$settings = $this->get_settings_for_display();
$this->add_render_attribute( 'button', 'class', 'jet-dropbar__button' );
if ( isset( $settings['button_hover_animation'] ) && $settings['button_hover_animation'] ) {
$this->add_render_attribute( 'button', 'class', 'elementor-animation-' . esc_attr( $settings['button_hover_animation'] ) );
}
?>
<button <?php $this->print_render_attribute_string( 'button' ); ?>><?php
$this->__icon( 'button_before_icon', '<span class="jet-elements-icon jet-dropbar__button-icon jet-dropbar__button-icon--before">%s</span>' );
$this->__html( 'button_text', '<span class="jet-dropbar__button-text">%s</span>' );
$this->__icon( 'button_after_icon', '<span class="jet-elements-icon jet-dropbar__button-icon jet-dropbar__button-icon--after">%s</span>' );
?></button>