%PDF- %PDF-
Direktori : /var/www/html/buggydubrovnik.com/wp-content/plugins/fusion-core/shortcodes/ |
Current File : /var/www/html/buggydubrovnik.com/wp-content/plugins/fusion-core/shortcodes/class-tooltip.php |
<?php class FusionSC_Tooltip { public static $args; /** * Initiate the shortcode */ public function __construct() { add_filter( 'fusion_attr_tooltip-shortcode', array( $this, 'attr' ) ); add_shortcode('tooltip', array( $this, 'render' ) ); } /** * Render the shortcode * @param array $args Shortcode paramters * @param string $content Content between shortcode * @return string HTML output */ function render( $args, $content = '') { $defaults = FusionCore_Plugin::set_shortcode_defaults( array( 'class' => '', 'id' => '', 'animation' => false, 'delay' => 0, 'placement' => 'top', 'title' => 'none', 'trigger' => 'hover', ), $args ); extract( $defaults ); self::$args = $defaults; $html = sprintf( '<span %s>%s</span>', FusionCore_Plugin::attributes( 'tooltip-shortcode' ), do_shortcode( $content ) ); return $html; } function attr() { $attr['class'] = 'fusion-tooltip tooltip-shortcode'; if( self::$args['class'] ) { $attr['class'] .= ' ' . self::$args['class']; } if( self::$args['id'] ) { $attr['id'] = self::$args['id']; } $attr['data-animation'] = self::$args['animation']; $attr['data-delay'] = self::$args['delay']; $attr['data-placement'] = self::$args['placement']; $attr['data-title'] = self::$args['title']; $attr['data-toggle'] = 'tooltip'; $attr['data-trigger'] = self::$args['trigger']; return $attr; } } new FusionSC_Tooltip();