예제 #1
0
/** 
 * Shortcode for Social Counter.
 */
function the_champ_counter_shortcode($params)
{
    // notify if counter is disabled
    if (the_champ_social_counter_enabled()) {
        extract(shortcode_atts(array('style' => '', 'type' => 'horizontal', 'left' => '0', 'right' => '0', 'top' => '100', 'url' => '', 'align' => 'left', 'title' => ''), $params));
        if ($type == 'horizontal' && !the_champ_horizontal_counter_enabled() || $type == 'vertical' && !the_champ_vertical_counter_enabled()) {
            return;
        }
        global $post;
        if ($url) {
            $targetUrl = $url;
            $postId = 0;
        } elseif (get_permalink($post->ID)) {
            $targetUrl = get_permalink($post->ID);
            $postId = $post->ID;
        } else {
            $targetUrl = html_entity_decode(esc_url(the_champ_get_http() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
            $postId = 0;
        }
        $alignmentOffset = 0;
        if ($left) {
            $alignmentOffset = $left;
        } elseif ($right) {
            $alignmentOffset = $right;
        }
        global $theChampCounterOptions;
        $html = '<div class="the_champ_counter_container the_champ_' . $type . '_counter' . ($type == 'vertical' && isset($theChampCounterOptions['hide_mobile_likeb']) ? ' the_champ_hide_sharing' : '') . '" ss-offset="' . $alignmentOffset . '" ';
        $verticalOffsets = '';
        if ($type == 'vertical') {
            $verticalOffsets = $align . ': ' . ${$align} . 'px; top: ' . $top . 'px;';
        }
        // style
        if ($style != "" || $verticalOffsets != '') {
            $html .= 'style="';
            if (strpos($style, 'background') === false) {
                $html .= '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;';
            }
            $html .= $verticalOffsets;
            $html .= $style;
            $html .= '"';
        }
        $html .= '>';
        if ($type == 'horizontal' && $title != '') {
            $html .= '<div style="font-weight:bold">' . ucfirst($title) . '</div>';
        }
        $counterUrl = $targetUrl;
        if (isset($theChampCounterOptions['use_shortlinks']) && function_exists('wp_get_shortlink')) {
            $counterUrl = wp_get_shortlink();
            // if bit.ly integration enabled, generate bit.ly short url
        } elseif (isset($theChampCounterOptions['bitly_enable']) && isset($theChampCounterOptions['bitly_username']) && isset($theChampCounterOptions['bitly_username']) && $theChampCounterOptions['bitly_username'] != '' && isset($theChampCounterOptions['bitly_key']) && $theChampCounterOptions['bitly_key'] != '') {
            $shortUrl = the_champ_generate_counter_bitly_url($targetUrl, $postId);
            if ($shortUrl) {
                $counterUrl = $shortUrl;
            }
        }
        $html .= the_champ_prepare_counter_html($targetUrl, $type, $counterUrl);
        $html .= '</div>';
        return $html;
    }
}
예제 #2
0
/** 
 * Shortcode for Social Counter.
 */
function the_champ_counter_shortcode($params)
{
    // notify if counter is disabled
    if (the_champ_social_counter_enabled()) {
        extract(shortcode_atts(array('style' => '', 'type' => 'horizontal', 'left' => '0', 'top' => '100', 'url' => ''), $params));
        if ($type == 'horizontal' && !the_champ_horizontal_counter_enabled() || $type == 'vertical' && !the_champ_vertical_counter_enabled()) {
            return;
        }
        global $post;
        $targetUrl = $url ? $url : get_permalink($post->ID);
        $html = '<div class="the_champ_counter_container the_champ_' . $type . '_counter" ';
        $verticalOffsets = '';
        if ($type == 'vertical') {
            $verticalOffsets = 'left: ' . $left . 'px; top: ' . $top . 'px;';
        }
        // style
        if ($style != "" || $verticalOffsets != '') {
            $html .= 'style="';
            if (strpos($style, 'background') === false) {
                $html .= 'box-shadow: none;';
            }
            $html .= $verticalOffsets;
            $html .= $style;
            $html .= '"';
        }
        $html .= '>';
        global $theChampCounterOptions;
        $counterUrl = $targetUrl;
        // if bit.ly integration enabled, generate bit.ly short url
        if (isset($theChampCounterOptions['bitly_enable']) && isset($theChampCounterOptions['bitly_username']) && isset($theChampCounterOptions['bitly_username']) && $theChampCounterOptions['bitly_username'] != '' && isset($theChampCounterOptions['bitly_key']) && $theChampCounterOptions['bitly_key'] != '') {
            $shortUrl = the_champ_generate_counter_bitly_url($targetUrl);
            if ($shortUrl) {
                $counterUrl = $shortUrl;
            }
        }
        $html .= the_champ_prepare_counter_html($targetUrl, $type, $counterUrl);
        $html .= '</div>';
        return $html;
    }
}
예제 #3
0
/**
 * Check if Facebook Like/Recommend is enabled
 */
function the_champ_facebook_like_rec_enabled()
{
    global $theChampCounterOptions;
    if (the_champ_social_counter_enabled() && (the_champ_horizontal_counter_enabled() && isset($theChampCounterOptions['horizontal_providers']) && (in_array('facebook_like', $theChampCounterOptions['horizontal_providers']) || in_array('facebook_recommend', $theChampCounterOptions['horizontal_providers'])) || the_champ_vertical_counter_enabled() && isset($theChampCounterOptions['vertical_providers']) && (in_array('facebook_like', $theChampCounterOptions['vertical_providers']) || in_array('facebook_recommend', $theChampCounterOptions['vertical_providers'])))) {
        return true;
    }
    return false;
}
예제 #4
0
/**
 * The javascript to loaded at front end.
 */
function the_champ_frontend_scripts()
{
    global $theChampFacebookOptions, $theChampLoginOptions, $theChampSharingOptions;
    $inFooter = isset($theChampLoginOptions['footer_script']) ? true : false;
    // general (required) scripts
    if (!isset($theChampSharingOptions['remove_modernizr'])) {
        wp_enqueue_script('the_champ_modernizer', plugins_url('js/modernizr.custom.82187.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION);
    }
    wp_enqueue_script('the_champ_ss_general_scripts', plugins_url('js/front/social_login/general.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
    $websiteUrl = site_url();
    $fbKey = isset($theChampLoginOptions["fb_key"]) && $theChampLoginOptions["fb_key"] != "" ? $theChampLoginOptions["fb_key"] : "";
    ?>

	<script> var theChampSiteUrl = '<?php 
    echo $websiteUrl;
    ?>
'; </script>
	<?php 
    // scripts used for common Social Login functionality
    if (the_champ_social_login_enabled() && !is_user_logged_in()) {
        $loadingImagePath = plugins_url('images/ajax_loader.gif', __FILE__);
        $theChampAjaxUrl = get_admin_url() . 'admin-ajax.php';
        $redirectionUrl = esc_attr(the_champ_get_login_redirection_url());
        $regRedirectionUrl = esc_attr(the_champ_get_login_redirection_url('', true));
        ?>

		<script> var theChampLoadingImgPath = '<?php 
        echo $loadingImagePath;
        ?>
'; var theChampAjaxUrl = '<?php 
        echo $theChampAjaxUrl;
        ?>
'; var theChampRedirectionUrl = '<?php 
        echo $redirectionUrl;
        ?>
'; var theChampRegRedirectionUrl = '<?php 
        echo $regRedirectionUrl;
        ?>
'; </script>
		<?php 
        $userVerified = false;
        $ajaxUrl = 'admin-ajax.php';
        $notification = '';
        if (isset($_GET['SuperSocializerVerified']) || isset($_GET['SuperSocializerUnverified'])) {
            $userVerified = true;
            $ajaxUrl = esc_url(add_query_arg(array('height' => 60, 'width' => 300, 'action' => 'the_champ_notify', 'message' => urlencode(isset($_GET['SuperSocializerUnverified']) ? __('Please verify your email address to login.', 'Super-Socializer') : __('Your email has been verified. Now you can login to your account', 'Super-Socializer'))), 'admin-ajax.php'));
            $notification = __('Notification', 'Super-Socializer');
        }
        $emailPopup = false;
        $emailAjaxUrl = 'admin-ajax.php';
        $emailPopupTitle = '';
        $emailPopupErrorMessage = '';
        $emailPopupUniqueId = '';
        $emailPopupVerifyMessage = '';
        if (isset($_GET['SuperSocializerEmail']) && isset($_GET['par']) && trim($_GET['par']) != '') {
            $emailPopup = true;
            $emailAjaxUrl = esc_url(add_query_arg(array('height' => isset($theChampLoginOptions['popup_height']) && $theChampLoginOptions['popup_height'] != '' ? esc_attr($theChampLoginOptions['popup_height']) : 210, 'width' => 300, 'action' => 'the_champ_ask_email'), 'admin-ajax.php'));
            $emailPopupTitle = __('Email required', 'Super-Socializer');
            $emailPopupErrorMessage = isset($theChampLoginOptions["email_error_message"]) ? $theChampLoginOptions["email_error_message"] : "";
            $emailPopupUniqueId = isset($_GET['par']) ? trim(esc_attr($_GET['par'])) : '';
            $emailPopupVerifyMessage = __('Please check your email inbox to complete the registration.', 'Super-Socializer');
        }
        ?>

		<script> var theChampFacebookScope = 'public_profile,email', theChampFBKey = '<?php 
        echo $fbKey;
        ?>
', theChampVerified = <?php 
        echo intval($userVerified);
        ?>
; var theChampAjaxUrl = '<?php 
        echo html_entity_decode(admin_url() . $ajaxUrl);
        ?>
'; var theChampPopupTitle = '<?php 
        echo $notification;
        ?>
'; var theChampEmailPopup = <?php 
        echo intval($emailPopup);
        ?>
; var theChampEmailAjaxUrl = '<?php 
        echo html_entity_decode(admin_url() . $emailAjaxUrl);
        ?>
'; var theChampEmailPopupTitle = '<?php 
        echo $emailPopupTitle;
        ?>
'; var theChampEmailPopupErrorMsg = '<?php 
        echo htmlspecialchars($emailPopupErrorMessage, ENT_QUOTES);
        ?>
'; var theChampEmailPopupUniqueId = '<?php 
        echo $emailPopupUniqueId;
        ?>
'; var theChampEmailPopupVerifyMessage = '<?php 
        echo $emailPopupVerifyMessage;
        ?>
'; var theChampTwitterRedirect = '<?php 
        echo urlencode(the_champ_get_valid_url(html_entity_decode(esc_url(the_champ_get_http() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]))));
        ?>
'; <?php 
        echo isset($theChampLoginOptions['disable_reg']) && isset($theChampLoginOptions['disable_reg_redirect']) && $theChampLoginOptions['disable_reg_redirect'] != '' ? 'var theChampDisableRegRedirect = "' . html_entity_decode(esc_url($theChampLoginOptions['disable_reg_redirect'])) . '";' : '';
        ?>
 </script>
		<?php 
        wp_enqueue_script('the_champ_sl_common', plugins_url('js/front/social_login/common.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
        wp_enqueue_script('thickbox');
        wp_enqueue_style('thickbox');
    }
    // Google+ scripts
    if (the_champ_social_login_provider_enabled('google') && !is_user_logged_in()) {
        $googleKey = isset($theChampLoginOptions['google_key']) ? $theChampLoginOptions['google_key'] : '';
        ?>

		<script>var theChampGoogleKey = '<?php 
        echo $googleKey;
        ?>
'; var theChampGoogleErrorMessage = '<?php 
        echo htmlspecialchars(__('Follow steps 11 and 12 at GooglePlus app configuration page, about to open', 'Super-Socializer'), ENT_QUOTES);
        ?>
' </script>
		<?php 
        wp_enqueue_script('the_champ_sl_google', plugins_url('js/front/social_login/google.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
    }
    // Linkedin scripts
    if (the_champ_social_login_provider_enabled('linkedin') && !is_user_logged_in()) {
        ?>

		<script type="text/javascript" src="//platform.linkedin.com/in.js">
		  api_key: <?php 
        echo isset($theChampLoginOptions['li_key']) ? $theChampLoginOptions['li_key'] : '';
        ?>

		  
		  onLoad: theChampLinkedInOnLoad
		</script>
		<?php 
        wp_enqueue_script('the_champ_sl_linkedin', plugins_url('js/front/social_login/linkedin.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
    }
    // Vkontakte scripts
    if (the_champ_social_login_provider_enabled('vkontakte') && !is_user_logged_in()) {
        ?>

		<script> var theChampVkKey = '<?php 
        echo isset($theChampLoginOptions["vk_key"]) && $theChampLoginOptions["vk_key"] != "" ? $theChampLoginOptions["vk_key"] : 0;
        ?>
' </script>
		<?php 
        wp_enqueue_script('the_champ_sl_vkontakte', plugins_url('js/front/social_login/vkontakte.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
    }
    // Instagram scripts
    if (the_champ_social_login_provider_enabled('instagram')) {
        ?>

		<script> var theChampInstaId = '<?php 
        echo isset($theChampLoginOptions["insta_id"]) && $theChampLoginOptions["insta_id"] != "" ? $theChampLoginOptions["insta_id"] : 0;
        ?>
'; var theChampTwitterRedirect = '<?php 
        echo urlencode(the_champ_get_valid_url(html_entity_decode(esc_url(the_champ_get_http() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]))));
        ?>
'; </script>
		<?php 
        wp_enqueue_script('the_champ_sl_instagram', plugins_url('js/front/social_login/instagram.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
    }
    // Facebook scripts
    if (the_champ_facebook_plugin_enabled()) {
        global $heateor_fcn_options;
        ?>

		<script> var theChampFBKey = '<?php 
        echo $fbKey;
        ?>
', theChampFBLang = '<?php 
        echo isset($theChampFacebookOptions["comment_lang"]) && $theChampFacebookOptions["comment_lang"] != '' ? $theChampFacebookOptions["comment_lang"] : "en_US";
        ?>
', theChampFbLikeMycred = <?php 
        echo defined('HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION') && the_champ_facebook_like_rec_enabled() ? 1 : 0;
        ?>
, theChampSsga = <?php 
        echo defined('HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION') ? 1 : 0;
        ?>
, theChampCommentNotification = <?php 
        echo isset($heateor_fcn_options) || function_exists('heateor_ss_check_querystring') || function_exists('the_champ_check_querystring') ? 1 : 0;
        ?>
, theChampFbIosLogin = <?php 
        echo !is_user_logged_in() && isset($_GET['code']) && esc_attr($_GET['code']) != '' ? 1 : 0;
        ?>
; </script>
		<?php 
        add_action('wp_footer', 'the_champ_fb_root_div');
        wp_enqueue_script('the_champ_fb_sdk', plugins_url('js/front/facebook/sdk.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
    }
    if (the_champ_social_login_provider_enabled('facebook') && !is_user_logged_in()) {
        wp_enqueue_script('the_champ_sl_facebook', plugins_url('js/front/social_login/facebook.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
    }
    // Social commenting
    if (the_champ_social_commenting_enabled()) {
        global $post;
        if ($post) {
            $postMeta = get_post_meta($post->ID, '_the_champ_meta', true);
            if (isset($theChampFacebookOptions['enable_' . $post->post_type]) && !(isset($postMeta) && isset($postMeta['fb_comments']) && $postMeta['fb_comments'] == 1)) {
                if (isset($theChampFacebookOptions['urlToComment']) && $theChampFacebookOptions['urlToComment'] != '') {
                    $commentUrl = $theChampFacebookOptions['urlToComment'];
                } elseif (isset($post->ID) && $post->ID) {
                    $commentUrl = get_permalink($post->ID);
                } else {
                    $commentUrl = html_entity_decode(esc_url(the_champ_get_http() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
                }
                $commentingTabsOrder = $theChampFacebookOptions['commenting_order'] != '' ? $theChampFacebookOptions['commenting_order'] : 'wordpress,facebook,googleplus,disqus';
                $commentingTabsOrder = explode(',', str_replace('facebook', 'fb', $commentingTabsOrder));
                $enabledTabs = array();
                foreach ($commentingTabsOrder as $tab) {
                    $tab = trim($tab);
                    if ($tab == 'wordpress') {
                        $enabledTabs[] = 'wordpress';
                    } elseif (isset($theChampFacebookOptions['enable_' . $tab . 'comments'])) {
                        $enabledTabs[] = $tab;
                    }
                }
                $labels = array();
                $labels['wordpress'] = $theChampFacebookOptions['label_wordpress_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_wordpress_comments'], ENT_QUOTES) : 'Default Comments';
                $commentsCount = wp_count_comments($post->ID);
                $labels['wordpress'] .= ' (' . ($commentsCount && isset($commentsCount->approved) ? $commentsCount->approved : '') . ')';
                $labels['fb'] = $theChampFacebookOptions['label_facebook_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_facebook_comments'], ENT_QUOTES) : 'Facebook Comments';
                $labels['fb'] .= ' (<fb:comments-count href=' . $commentUrl . '></fb:comments-count>)';
                $labels['googleplus'] = $theChampFacebookOptions['label_googleplus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_googleplus_comments'], ENT_QUOTES) : 'GooglePlus Comments';
                $labels['disqus'] = $theChampFacebookOptions['label_disqus_comments'] != '' ? htmlspecialchars($theChampFacebookOptions['label_disqus_comments'], ENT_QUOTES) : 'Disqus Comments';
                ?>

				<script>var theChampFBCommentUrl = '<?php 
                echo $commentUrl;
                ?>
'; var theChampFBCommentColor = '<?php 
                echo isset($theChampFacebookOptions['comment_color']) && $theChampFacebookOptions['comment_color'] != '' ? $theChampFacebookOptions["comment_color"] : '';
                ?>
'; var theChampFBCommentNumPosts = '<?php 
                echo isset($theChampFacebookOptions['comment_numposts']) && $theChampFacebookOptions['comment_numposts'] != '' ? $theChampFacebookOptions["comment_numposts"] : '';
                ?>
'; var theChampFBCommentWidth = '<?php 
                echo isset($theChampFacebookOptions['comment_width']) && $theChampFacebookOptions['comment_width'] != '' ? $theChampFacebookOptions["comment_width"] : '100%';
                ?>
'; var theChampFBCommentOrderby = '<?php 
                echo isset($theChampFacebookOptions['comment_orderby']) && $theChampFacebookOptions['comment_orderby'] != '' ? $theChampFacebookOptions["comment_orderby"] : '';
                ?>
'; var theChampCommentingTabs = "<?php 
                echo isset($theChampFacebookOptions['commenting_order']) ? $theChampFacebookOptions['commenting_order'] : '';
                ?>
", theChampGpCommentsUrl = '<?php 
                echo isset($theChampFacebookOptions['gpcomments_url']) && $theChampFacebookOptions['gpcomments_url'] != '' ? $theChampFacebookOptions['gpcomments_url'] : $commentUrl;
                ?>
', theChampDisqusShortname = '<?php 
                echo isset($theChampFacebookOptions['dq_shortname']) ? $theChampFacebookOptions['dq_shortname'] : '';
                ?>
', theChampScEnabledTabs = '<?php 
                echo implode(',', $enabledTabs);
                ?>
', theChampScLabel = '<?php 
                echo $theChampFacebookOptions['commenting_label'] != '' ? htmlspecialchars($theChampFacebookOptions['commenting_label'], ENT_QUOTES) : __('Leave a reply', 'Super-Socializer');
                ?>
', theChampScTabLabels = <?php 
                echo json_encode($labels);
                ?>
, theChampGpCommentsWidth = <?php 
                echo isset($theChampFacebookOptions['gpcomments_width']) && $theChampFacebookOptions['gpcomments_width'] != '' ? $theChampFacebookOptions['gpcomments_width'] : 0;
                ?>
, theChampCommentingId = '<?php 
                echo isset($theChampFacebookOptions['commenting_id']) && $theChampFacebookOptions['commenting_id'] != '' ? $theChampFacebookOptions['commenting_id'] : 'respond';
                ?>
'</script>
				<?php 
                wp_enqueue_script('the_champ_fb_commenting', plugins_url('js/front/facebook/commenting.js', __FILE__), false, THE_CHAMP_SS_VERSION, $inFooter);
            }
        }
    }
    // sharing script
    if (the_champ_social_sharing_enabled() || the_champ_social_counter_enabled() && the_champ_vertical_social_counter_enabled()) {
        global $theChampSharingOptions, $theChampCounterOptions, $post;
        ?>

		<script> var theChampSharingAjaxUrl = '<?php 
        echo get_admin_url();
        ?>
admin-ajax.php', theChampCloseIconPath = '<?php 
        echo plugins_url('images/close.png', __FILE__);
        ?>
', theChampPluginIconPath = '<?php 
        echo plugins_url('images/logo.png', __FILE__);
        ?>
', theChampHorizontalSharingCountEnable = <?php 
        echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['hor_enable']) && (isset($theChampSharingOptions['horizontal_counts']) || isset($theChampSharingOptions['horizontal_total_shares'])) ? 1 : 0;
        ?>
, theChampVerticalSharingCountEnable = <?php 
        echo isset($theChampSharingOptions['enable']) && isset($theChampSharingOptions['vertical_enable']) && (isset($theChampSharingOptions['vertical_counts']) || isset($theChampSharingOptions['vertical_total_shares'])) ? 1 : 0;
        ?>
, theChampSharingOffset = <?php 
        echo isset($theChampSharingOptions['alignment']) && $theChampSharingOptions['alignment'] != '' && isset($theChampSharingOptions[$theChampSharingOptions['alignment'] . '_offset']) && $theChampSharingOptions[$theChampSharingOptions['alignment'] . '_offset'] != '' ? $theChampSharingOptions[$theChampSharingOptions['alignment'] . '_offset'] : 0;
        ?>
, theChampCounterOffset = <?php 
        echo isset($theChampCounterOptions['alignment']) && $theChampCounterOptions['alignment'] != '' && isset($theChampCounterOptions[$theChampCounterOptions['alignment'] . '_offset']) && $theChampCounterOptions[$theChampCounterOptions['alignment'] . '_offset'] != '' ? $theChampCounterOptions[$theChampCounterOptions['alignment'] . '_offset'] : 0;
        ?>
 </script>
		<?php 
        wp_enqueue_script('the_champ_share_counts', plugins_url('js/front/sharing/sharing.js', __FILE__), array('jquery'), THE_CHAMP_SS_VERSION, $inFooter);
    }
}
예제 #5
0
 /** This is rendered widget content */
 function widget($args, $instance)
 {
     // return if counter is disabled
     if (!the_champ_social_counter_enabled() || !the_champ_vertical_counter_enabled()) {
         return;
     }
     extract($args);
     if ($instance['hide_for_logged_in'] == 1 && is_user_logged_in()) {
         return;
     }
     global $theChampCounterOptions, $post;
     if (isset($instance['target_url'])) {
         if ($instance['target_url'] == 'default') {
             $counterUrl = is_home() ? site_url() : get_permalink($post->ID);
         } elseif ($instance['target_url'] == 'homepage') {
             $counterUrl = site_url();
         } elseif ($instance['target_url'] == 'custom') {
             $counterUrl = isset($instance['target_url_custom']) ? trim($instance['target_url_custom']) : get_permalink($post->ID);
         }
     } else {
         $counterUrl = get_permalink($post->ID);
     }
     echo "<div class='the_champ_counter_container the_champ_vertical_counter' style='" . (isset($instance['alignment']) && $instance['alignment'] != '' && isset($instance[$instance['alignment'] . '_offset']) ? $instance['alignment'] . ': ' . ($instance[$instance['alignment'] . '_offset'] == '' ? 0 : $instance[$instance['alignment'] . '_offset']) . 'px;' : '') . (isset($instance['top_offset']) ? 'top: ' . ($instance['top_offset'] == '' ? 0 : $instance['top_offset']) . 'px;' : '') . (isset($instance['vertical_bg']) && $instance['vertical_bg'] != '' ? 'background-color: ' . $instance['vertical_bg'] . ';' : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "' >";
     // if bit.ly integration enabled, generate bit.ly short url
     $shortUrl = $counterUrl;
     if (isset($theChampCounterOptions['bitly_enable']) && isset($theChampCounterOptions['bitly_username']) && isset($theChampCounterOptions['bitly_username']) && $theChampCounterOptions['bitly_username'] != '' && isset($theChampCounterOptions['bitly_key']) && $theChampCounterOptions['bitly_key'] != '') {
         $tempShortUrl = the_champ_generate_counter_bitly_url($counterUrl);
         if ($tempShortUrl) {
             $shortUrl = $tempShortUrl;
         }
     }
     //echo $before_widget;
     echo the_champ_prepare_counter_html($counterUrl, 'vertical', $shortUrl);
     echo "</div>";
     //echo $after_widget;
 }
예제 #6
0
    require 'library/twitteroauth.php';
}
if (isset($theChampLoginOptions['providers']) && in_array('xing', $theChampLoginOptions['providers'])) {
    $theChampOauthConfigurationFile = plugins_url('library/oauth_configuration.json', __FILE__);
    require 'library/http.php';
    require 'library/oauth_client.php';
}
$theChampFacebookOptions = get_option('the_champ_facebook');
$theChampSharingOptions = get_option('the_champ_sharing');
$theChampCounterOptions = get_option('the_champ_counter');
$theChampIsBpActive = false;
require 'helper.php';
// include social login functions
require 'inc/social_login.php';
// include social sharing functions
if (the_champ_social_sharing_enabled() || the_champ_social_counter_enabled()) {
    require 'inc/social_sharing.php';
}
//include widget class
require 'inc/widget.php';
//include shortcode
require 'inc/shortcode.php';
/**
 * Hook the plugin function on 'init' event.
 */
function the_champ_init()
{
    if (get_option('the_champ_ss_version') != THE_CHAMP_SS_VERSION) {
        update_option('the_champ_ss_version', THE_CHAMP_SS_VERSION);
    }
    add_action('wp_enqueue_scripts', 'the_champ_load_event');
예제 #7
0
/**
 * Register plugin settings and its sanitization callback.
 */
function the_champ_options_init()
{
    register_setting('the_champ_facebook_options', 'the_champ_facebook', 'the_champ_validate_options');
    register_setting('the_champ_login_options', 'the_champ_login', 'the_champ_validate_options');
    register_setting('the_champ_sharing_options', 'the_champ_sharing', 'the_champ_validate_options');
    register_setting('the_champ_counter_options', 'the_champ_counter', 'the_champ_validate_options');
    if (the_champ_social_sharing_enabled() || the_champ_social_counter_enabled() || the_champ_social_commenting_enabled()) {
        // show option to disable sharing on particular page/post
        $post_types = get_post_types(array('public' => true), 'names', 'and');
        $post_types = array_unique(array_merge($post_types, array('post', 'page')));
        foreach ($post_types as $type) {
            add_meta_box('the_champ_meta', 'Super Socializer', 'the_champ_sharing_meta_setup', $type);
        }
        // save sharing meta on post/page save
        add_action('save_post', 'the_champ_save_sharing_meta');
    }
}
예제 #8
0
 /** This is rendered widget content */
 public function widget($args, $instance)
 {
     // return if counter is disabled
     if (!the_champ_social_counter_enabled() || !the_champ_vertical_counter_enabled()) {
         return;
     }
     extract($args);
     if ($instance['hide_for_logged_in'] == 1 && is_user_logged_in()) {
         return;
     }
     global $theChampCounterOptions, $post;
     $postId = $post->ID;
     if (isset($instance['target_url'])) {
         if ($instance['target_url'] == 'default') {
             if (is_home()) {
                 $counterUrl = site_url();
                 $postId = 0;
             } elseif (get_permalink($post->ID)) {
                 $counterUrl = get_permalink($post->ID);
             } else {
                 $counterUrl = html_entity_decode(esc_url(the_champ_get_http() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]));
             }
         } elseif ($instance['target_url'] == 'homepage') {
             $counterUrl = site_url();
             $postId = 0;
         } elseif ($instance['target_url'] == 'custom') {
             $counterUrl = isset($instance['target_url_custom']) ? trim($instance['target_url_custom']) : get_permalink($post->ID);
             $postId = 0;
         }
     } else {
         $counterUrl = get_permalink($post->ID);
     }
     $ssOffset = 0;
     if (isset($instance['alignment']) && isset($instance[$instance['alignment'] . '_offset'])) {
         $ssOffset = $instance[$instance['alignment'] . '_offset'];
     }
     echo "<div class='the_champ_counter_container the_champ_vertical_counter" . (isset($theChampCounterOptions['hide_mobile_likeb']) ? ' the_champ_hide_sharing' : '') . "' ss-offset='" . $ssOffset . "' style='" . (isset($instance['alignment']) && $instance['alignment'] != '' && isset($instance[$instance['alignment'] . '_offset']) ? $instance['alignment'] . ': ' . ($instance[$instance['alignment'] . '_offset'] == '' ? 0 : $instance[$instance['alignment'] . '_offset']) . 'px;' : '') . (isset($instance['top_offset']) ? 'top: ' . ($instance['top_offset'] == '' ? 0 : $instance['top_offset']) . 'px;' : '') . (isset($instance['vertical_bg']) && $instance['vertical_bg'] != '' ? 'background-color: ' . $instance['vertical_bg'] . ';' : '-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;') . "' >";
     // if bit.ly integration enabled, generate bit.ly short url
     $shortUrl = $counterUrl;
     if (isset($theChampCounterOptions['use_shortlinks']) && function_exists('wp_get_shortlink')) {
         $shortUrl = wp_get_shortlink();
         // if bit.ly integration enabled, generate bit.ly short url
     } elseif (isset($theChampCounterOptions['bitly_enable']) && isset($theChampCounterOptions['bitly_username']) && isset($theChampCounterOptions['bitly_username']) && $theChampCounterOptions['bitly_username'] != '' && isset($theChampCounterOptions['bitly_key']) && $theChampCounterOptions['bitly_key'] != '') {
         $tempShortUrl = the_champ_generate_counter_bitly_url($counterUrl, $postId);
         if ($tempShortUrl) {
             $shortUrl = $tempShortUrl;
         }
     }
     //echo $before_widget;
     echo the_champ_prepare_counter_html($counterUrl, 'vertical', $shortUrl);
     echo "</div>";
     //echo $after_widget;
 }
예제 #9
0
/**
 * Register plugin settings and its sanitization callback.
 */
function the_champ_options_init()
{
    register_setting('the_champ_facebook_options', 'the_champ_facebook', 'the_champ_validate_options');
    register_setting('the_champ_login_options', 'the_champ_login', 'the_champ_validate_options');
    register_setting('the_champ_sharing_options', 'the_champ_sharing', 'the_champ_validate_options');
    register_setting('the_champ_counter_options', 'the_champ_counter', 'the_champ_validate_options');
    if (the_champ_social_sharing_enabled() || the_champ_social_counter_enabled()) {
        // show option to disable sharing on particular page/post
        foreach (array('post', 'page') as $type) {
            add_meta_box('the_champ_meta', 'Super Socializer', 'the_champ_sharing_meta_setup', $type);
        }
        // save sharing meta on post/page save
        add_action('save_post', 'the_champ_save_sharing_meta');
    }
}