BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
CTR
/
wp-content
/
plugins
/
porto-functionality
/
shortcodes
/
templates
📤 Upload
📝 New File
📁 New Folder
Close
Editing: porto_tooltip.php
<?php $output = $prefix = $text = $suffix = $display = $type = $link = $btn_size = $btn_skin = $btn_context = $tooltip_text = $tooltip_position = $animation_type = $animation_duration = $animation_delay = $el_class = ''; extract( shortcode_atts( array( 'prefix' => '', 'text' => '', 'suffix' => '', 'display' => '', 'type' => '', 'link' => '', 'btn_size' => '', 'btn_skin' => 'custom', 'btn_context' => '', 'tooltip_text' => '', 'tooltip_position' => 'top', 'animation_type' => '', 'animation_duration' => 1000, 'animation_delay' => 0, 'animation_reveal_clr' => '', 'el_class' => '', ), $atts ) ); $el_class = porto_shortcode_extract_class( $el_class ); if ( 'block' == $display ) { $el_class .= ' wpb_content_element'; } else { $el_class .= ' inline'; } $output = '<div class="porto-tooltip ' . esc_attr( $el_class ) . '"'; if ( $animation_type ) { $output .= ' data-appear-animation="' . esc_attr( $animation_type ) . '"'; if ( $animation_delay ) { $output .= ' data-appear-animation-delay="' . esc_attr( $animation_delay ) . '"'; } if ( $animation_duration && 1000 != $animation_duration ) { $output .= ' data-appear-animation-duration="' . esc_attr( $animation_duration ) . '"'; } if ( false !== strpos( $animation_type, 'revealDir' ) ) { $output .= ' data-animation-reveal-clr="' . ( ! empty( $animation_reveal_clr ) ? esc_attr( $animation_reveal_clr ) : '' ) . '"'; } } $output .= '>'; $output .= $prefix; if ( 'btn' == $type || 'btn-link' == $type ) { $btn_class = 'btn'; if ( $btn_size ) { $btn_class .= ' btn-' . $btn_size; } if ( 'custom' != $btn_skin ) { $btn_class .= ' btn-' . $btn_skin; } if ( $btn_context ) { $btn_class .= ' btn-' . $btn_context; } if ( 'custom' == $btn_skin && ! $btn_context ) { $btn_class .= ' btn-default'; } if ( 'btn' == $type ) { $output .= ' <button type="button" data-toggle="tooltip" title="' . esc_attr( $tooltip_text ) . '" data-bs-placement="' . esc_attr( $tooltip_position ) . '" class="' . esc_attr( $btn_class ) . '">'; $output .= $text; $output .= '</button> '; } else { $output .= ' <a href="' . ( ! $link ? 'javascript:;' : esc_url( $link ) ) . '" data-toggle="tooltip" title="' . esc_attr( $tooltip_text ) . '" data-bs-placement="' . esc_attr( $tooltip_position ) . '" class="' . esc_attr( $btn_class ) . '">'; $output .= $text; $output .= '</a> '; } } else { $output .= ' <a href="' . ( ! $link ? 'javascript:;' : esc_url( $link ) ) . '" data-toggle="tooltip" title="' . esc_attr( $tooltip_text ) . '" data-bs-placement="' . esc_attr( $tooltip_position ) . '">'; $output .= $text; $output .= '</a> '; } $output .= $suffix; $output .= '</div>'; echo porto_filter_output( $output );
Save
Cancel