| 1 |
<?php |
| 2 |
|
| 3 |
if ( ! defined( 'ABSPATH' ) ) { |
| 4 |
exit; |
| 5 |
} |
| 6 |
|
| 7 |
add_action( 'admin_footer', 'fv_player_avada_builder_bridge' ); |
| 8 |
|
| 9 |
function fv_player_avada_builder_bridge() { |
| 10 |
if( did_action('fusion_builder_admin_scripts_hook') ) { |
| 11 |
?> |
| 12 |
<script> |
| 13 |
jQuery( function($) { |
| 14 |
$(document).on( 'fusionButtons', function( e, current_id ) { |
| 15 |
jQuery('[data-option-id='+current_id+']').find('#wp-element_content-media-buttons').append('<a title="Add FV Player" href="#" class="button fv-wordpress-flowplayer-button"><span> </span> Player</a>'); |
| 16 |
}); |
| 17 |
}); |
| 18 |
</script> |
| 19 |
<?php |
| 20 |
} |
| 21 |
} |