HEX
Server: Apache
System: Linux 162-240-236-42.bluehost.com 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
User: bt667 (1004)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/bt667/www/wp-content/plugins/wp_mvplayer/includes/social-lock/socialbtn.php
<?php
    if ( ! defined( 'ABSPATH' ) ) exit;
?>

<div class="social_btn" id="social_button<?php echo $player_id;?>" style="display:none;">
    <?php
        if($SocialLockAllowSkip=='yes'){ ?>
            <a id="socialskip" href="javascript:socialHideIt_<?php echo $player_id;?>()">Skip</a>
        <?php }
    ?>

    <div class="social_optin">
        <div class="social_title"><?php echo $socialtitle;?></div>
        <div class="social_text"><?php echo $socialtext;?></div>
    </div>
    
    <?php
        $mvplayer_social_lockdown_url = '';
        $tweet = '';
        if($social_enable=='yes'){
            $tweet = $DefaultTweet;
            
            if($info->ShareUrl=='page_post'){
                $mvplayer_social_lockdown_url = get_permalink();
            }
            else if($info->ShareUrl=='main_blog'){
                $mvplayer_social_lockdown_url = get_home_url();
            }
            else if($info->ShareUrl=='custom'){
                $mvplayer_social_lockdown_url = $v_info->CustomUrl;
            }
        }
    ?>
        <div style="padding-left: 20px;" class="allsharebtn<?php echo $player_id;?>">
            <div class='g-plusone' data-size='medium' data-callback='mvplayer_social_lockdown_plusone' data-href='<?php echo $mvplayer_social_lockdown_url;?>'></div>
            <div class="row">
                <a href="https://www.facebook.com/sharer/sharer.php?u=<?php echo $mvplayer_social_lockdown_url;?>&t=<?php echo $tweet;?>" onclick="javascript:socialHideIt_<?php echo $player_id;?>();window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');return false;" title="Share on Facebook"><i style="font-family: fontawesome!important;" class="fa fa-facebook"></i></a>
                <a href="https://twitter.com/share?url=<?php echo $mvplayer_social_lockdown_url;?>&text=<?php echo $tweet;?>" class="fa fa-twitter" onclick="javascript:socialHideIt_<?php echo $player_id;?>();window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');return false;" target="_blank" title="Share on Twitter"></a>
                <a href="http://instagram.com/sharer.php?u=<?php echo $mvplayer_social_lockdown_url;?>&description=<?php echo $tweet;?>" onclick="javascript:socialHideIt_<?php echo $player_id;?>();window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');return false;"><i style="font-family: fontawesome!important;" class="fa fa-instagram"></i></a>
            </div>
        </div>
    <style>
        .fa {
            padding: 5px;
            font-size: 30px;
            width: 50px;
            text-align: center;
            text-decoration: none;
            margin: 5px 2px;
            border-radius: 5px;
        }
        .fa:hover {
            opacity: 0.7;
        }
        .fa-facebook {
            background: #3B5998;
            color: white;
        }
        .fa-twitter {
            background: #55ACEE;
            color: white;
        }

        .fa-instagram {
            background: #125688;
            color: white;
        }

        .social_btn iframe{
            margin: 0px;
        }
    </style>
</div>