ID ) ), ENT_QUOTES, 'UTF-8' );
} else {
$linkname = '';
}
}
$linkname_enc = rawurlencode( $linkname );
// Set linkurl
if ( ! $linkurl ) {
if ( $use_current_page ) {
$linkurl = esc_url_raw ( ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
} elseif ( isset( $post ) ) {
$linkurl = get_permalink( $post->ID );
} else {
$linkurl = '';
}
}
$linkurl_enc = rawurlencode( $linkurl );
// Set linkmedia (only applies to services that explicitly accept media; Pinterest does, most do not)
$linkmedia_enc = ! empty( $linkmedia ) ? rawurlencode( $linkmedia ) : false;
return compact( 'linkname', 'linkname_enc', 'linkurl', 'linkurl_enc', 'linkmedia', 'linkmedia_enc' );
}
// Combine ADDTOANY_SHARE_SAVE_ICONS and ADDTOANY_SHARE_SAVE_BUTTON
function ADDTOANY_SHARE_SAVE_KIT( $args = array() ) {
$options = get_option( 'addtoany_options' );
$linkname = isset( $args['linkname'] ) ? $args['linkname'] : false;
$linkurl = isset( $args['linkurl'] ) ? $args['linkurl'] : false;
$linkmedia = isset( $args['linkmedia'] ) ? $args['linkmedia'] : false;
$use_current_page = isset( $args['use_current_page'] ) ? $args['use_current_page'] : false;
$args = array_merge( $args, A2A_SHARE_SAVE_link_vars( $linkname, $linkurl, $linkmedia, $use_current_page ) ); // linkname_enc, etc.
$defaults = array(
'output_later' => false,
'icon_size' => isset( $options['icon_size'] ) ? $options['icon_size'] : '32',
);
$args = wp_parse_args( $args, $defaults );
extract( $args );
// If universal button disabled, and not manually disabled through args
if ( isset( $options['button'] ) && $options['button'] == 'NONE' && ! isset( $args['no_universal_button'] ) ) {
// Pass this setting on to ADDTOANY_SHARE_SAVE_BUTTON
// (and only via this ADDTOANY_SHARE_SAVE_KIT function because it is used for automatic placement)
$args['no_universal_button'] = true;
}
// Custom icons enabled?
$custom_icons = ( isset( $options['custom_icons'] ) && $options['custom_icons'] == 'url' && isset( $options['custom_icons_url'] ) ) ? true : false;
$kit_additional_classes = '';
$kit_data_media = empty( $linkmedia ) ? '' : ' data-a2a-media="' . $linkmedia . '"';
$kit_data_title = empty( $linkname ) || $use_current_page ? '' : ' data-a2a-title="' . $linkname . '"';
$kit_data_url = empty( $linkurl ) || $use_current_page ? '' : ' data-a2a-url="' . $linkurl . '"';
$kit_style = '';
// Add additional classNames to .a2a_kit
if ( ! empty( $args['kit_additional_classes'] ) ) {
// Append space and className(s)
$kit_additional_classes .= ' ' . $args['kit_additional_classes'];
}
// Set a2a_kit_size_## class name unless "icon_size" is set to '16'
if ( $custom_icons ) {
// If vertical style (.a2a_vertical_style)
if ( strpos( $kit_additional_classes, 'a2a_vertical_style' ) !== false ) {
// Use width (if specified) for .a2a_kit_size_## class name to size default service counters
$icon_size_classname = isset( $options['custom_icons_width'] ) ? ' a2a_kit_size_' . $options['custom_icons_width'] : '';
} else {
// Use height (if specified) for .a2a_kit_size_## class name to size default service counters
$icon_size_classname = isset( $options['custom_icons_height'] ) ? ' a2a_kit_size_' . $options['custom_icons_height'] : '';
}
// a2a_kit_size_## icon size
} else {
$icon_size_classname = ' a2a_kit_size_' . $icon_size;
}
// Add addtoany_list className unless disabled (for floating buttons)
if ( ! isset( $args['no_addtoany_list_classname'] ) ) {
$kit_additional_classes .= ' addtoany_list';
}
// Add style attribute if set
if ( isset( $args['kit_style'] ) ) {
$kit_style = ' style="' . $args['kit_style'] . '"';
}
if ( ! isset( $args['html_container_open'] ) ) {
$args['html_container_open'] = '
';
$args['is_kit'] = true;
}
if ( ! isset( $args['html_container_close'] ) )
$args['html_container_close'] = "
";
// Close container element in ADDTOANY_SHARE_SAVE_BUTTON, not prematurely in ADDTOANY_SHARE_SAVE_ICONS
$html_container_close = $args['html_container_close']; // Cache for _BUTTON
unset($args['html_container_close']); // Avoid passing to ADDTOANY_SHARE_SAVE_ICONS since set in _BUTTON
if ( ! isset( $args['html_wrap_open'] ) )
$args['html_wrap_open'] = "";
if ( ! isset( $args['html_wrap_close'] ) )
$args['html_wrap_close'] = "";
$kit_html = ADDTOANY_SHARE_SAVE_ICONS( $args );
$args['html_container_close'] = $html_container_close; // Re-set because unset above for _ICONS
unset( $args['html_container_open'] ); // Avoid passing to ADDTOANY_SHARE_SAVE_BUTTON since set in _ICONS
$kit_html .= ADDTOANY_SHARE_SAVE_BUTTON( $args );
if ( true == $output_later )
return $kit_html;
else
echo $kit_html;
}
function ADDTOANY_SHARE_SAVE_ICONS( $args = array() ) {
// $args array: output_later, html_container_open, html_container_close, html_wrap_open, html_wrap_close, linkname, linkurl
global $A2A_SHARE_SAVE_plugin_url_path,
$A2A_SHARE_SAVE_services,
$A2A_FOLLOW_services,
$A2A_SHARE_SAVE_amp_icons_css;
$options = get_option( 'addtoany_options' );
$linkname = isset( $args['linkname'] ) ? $args['linkname'] : false;
$linkurl = isset( $args['linkurl'] ) ? $args['linkurl'] : false;
$linkmedia = isset( $args['linkmedia'] ) ? $args['linkmedia'] : false;
$args = array_merge( $args, A2A_SHARE_SAVE_link_vars( $linkname, $linkurl, $linkmedia ) ); // linkname_enc, etc.
$defaults = array(
'linkname' => '',
'linkurl' => '',
'linkmedia' => '',
'linkname_enc' => '',
'linkurl_enc' => '',
'linkmedia_enc' => '',
'output_later' => false,
'html_container_open' => '',
'html_container_close' => '',
'html_wrap_open' => '',
'html_wrap_close' => '',
'icon_size' => isset( $options['icon_size'] ) ? $options['icon_size'] : '32',
'is_follow' => false,
'no_universal_button' => false,
'buttons' => array(),
);
$args = wp_parse_args( $args, $defaults );
extract( $args );
$https_or_http = is_ssl() ? 'https' : 'http';
$is_amp = function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ? true : false;
$amp_css = '.a2a_dd img{background-color:#0166FF;}';
// Large icons except for AMP endpoint
$large_icons = $is_amp ? false : true;
// Directory of either custom icons or the packaged icons
if ( isset( $options['custom_icons'] ) && $options['custom_icons'] == 'url' && isset( $options['custom_icons_url'] ) ) {
// Custom icons expected at a specified URL, i.e. //example.com/blog/uploads/addtoany/icons/custom/
$icons_dir = $options['custom_icons_url'];
$icons_type = ( isset( $options['custom_icons_type'] ) ) ? $options['custom_icons_type'] : 'png';
$icons_width = ( isset( $options['custom_icons_width'] ) ) ? $options['custom_icons_width'] : '';
$icons_height = ( isset( $options['custom_icons_height'] ) ) ? $options['custom_icons_height'] : '';
$custom_icons = true;
} else {
// Packaged 16px icons
$icons_dir = $A2A_SHARE_SAVE_plugin_url_path . '/icons/';
$icons_type = 'png';
}
// If Follow kit
if ( $is_follow ) {
// Make available services extensible via plugins, themes (functions.php), etc.
$services = apply_filters( 'A2A_FOLLOW_services', $A2A_FOLLOW_services );
$service_codes = ( is_array( $services ) ) ? array_keys( $services ) : array();
// Services set by "buttons" arg
$active_services = ! empty ( $buttons ) ? array_keys( $buttons ) : array();
// Else Share kit
} else {
// Make available services extensible via plugins, themes (functions.php), etc.
$services = apply_filters( 'A2A_SHARE_SAVE_services', $A2A_SHARE_SAVE_services );
$service_codes = ( is_array( $services ) ) ? array_keys( $services ) : array();
// Include Facebook Like and Twitter Tweet etc. unless no_special_services arg is true
if ( ! isset( $no_special_services ) || false == $no_special_services ) {
array_unshift( $service_codes, 'facebook_like', 'twitter_tweet', 'google_plusone', 'google_plus_share', 'pinterest_pin' );
}
// Use default services if services have not been selected yet
$active_services = ( isset( $options['active_services'] ) ) ? $options['active_services'] : array( 'facebook', 'twitter', 'google_plus' );
// Services set by "buttons" arg? Then use "buttons" arg instead
$active_services = ! empty ( $buttons ) ? $buttons : $active_services;
}
$ind_html = "" . $html_container_open;
foreach( $active_services as $active_service ) {
$custom_service = false;
if ( ! in_array( $active_service, $service_codes ) )
continue;
if ( $active_service == 'facebook_like' || $active_service == 'twitter_tweet' || $active_service == 'google_plusone' || $active_service == 'google_plus_share' || $active_service == 'pinterest_pin' ) {
$special_args = $args;
$special_args['output_later'] = true;
$link = ADDTOANY_SHARE_SAVE_SPECIAL( $active_service, $special_args );
} else {
$service = $services[ $active_service ];
$safe_name = $active_service;
$name = $service['name'];
// If Follow kit and HREF specified
if ( $is_follow && isset( $service['href'] ) ) {
$follow_id = $buttons[ $active_service ]['id'];
$is_url = in_array( parse_url( $follow_id, PHP_URL_SCHEME ), array( 'http', 'https' ) );
// If it's a URL instead of a service ID
if ( $is_url ) {
// Just use the given URL instead of the URL template
$href = $follow_id;
} else {
// Replace the ID placeholder in the URL template
$href = str_replace( '${id}', $follow_id, $service['href'] );
}
$href = ( 'feed' == $safe_name ) ? $follow_id : $href;
// If icon_url is set, presume custom service
if ( isset( $service['icon_url'] ) ) {
$custom_service = true;
}
// Else if Share Kit and HREF specified, presume custom service
} elseif ( isset( $service['href'] ) ) {
$custom_service = true;
$href = $service['href'];
if ( isset( $service['href_js_esc'] ) ) {
$href_linkurl = str_replace( "'", "\'", $linkurl );
$href_linkname = str_replace( "'", "\'", $linkname );
} else {
$href_linkurl = $linkurl_enc;
$href_linkname = $linkname_enc;
}
$href = str_replace( "A2A_LINKURL", $href_linkurl, $href );
$href = str_replace( "A2A_LINKNAME", $href_linkname, $href );
$href = str_replace( " ", "%20", $href );
}
// AddToAny counter enabled?
$counter_enabled = ( ! $is_follow // Disable counters on Follow Kits
&& in_array( $active_service, array( 'facebook', 'pinterest', 'linkedin', 'reddit' ) )
&& isset( $options['special_' . $active_service . '_options'] )
&& isset( $options['special_' . $active_service . '_options']['show_count'] )
&& $options['special_' . $active_service . '_options']['show_count'] == '1'
) ? true : false;
$icon = isset( $service['icon'] ) ? $service['icon'] : 'default'; // Just the icon filename
$icon_url = isset( $service['icon_url'] ) ? $service['icon_url'] : false;
$icon_url = $is_amp && ! $icon_url ? 'https://static.addtoany.com/buttons/' . $icon . '.svg' : $icon_url;
$width_attr = isset( $service['icon_width'] ) ? ' width="' . $service['icon_width'] . '"' : ' width="16"';
$width_attr = $is_amp && ! empty( $icon_size ) ? ' width="' . $icon_size . '"' : $width_attr;
$height_attr = isset( $service['icon_height'] ) ? ' height="' . $service['icon_height'] . '"' : ' height="16"';
$height_attr = $is_amp && ! empty( $icon_size ) ? ' height="' . $icon_size . '"' : $height_attr;
$amp_css .= $is_amp && ! empty( $service['color'] ) ? '.a2a_button_' . $safe_name . ' img{background-color:#' . $service['color'] . ';}' : '';
$url = ( isset( $href ) ) ? $href : $https_or_http . '://www.addtoany.com/add_to/' . $safe_name . '?linkurl=' . $linkurl_enc .'&linkname=' . $linkname_enc;
$src = ( $icon_url ) ? $icon_url : $icons_dir . $icon . '.' . $icons_type;
$counter = ( $counter_enabled ) ? ' a2a_counter' : '';
$class_attr = ( $custom_service ) ? '' : ' class="a2a_button_' . $safe_name . $counter . '"';
$rel_nofollow = $is_follow ? '' : ' rel="nofollow"'; // ($is_follow indicates a Follow Kit. 'nofollow' is for search crawlers. Different things)
if ( isset( $service['target'] ) ) {
$target_attr = empty( $service['target'] ) ? '' : ' target="' . $service['target'] . '"';
} else {
$target_attr = ' target="_blank"';
}
// Set dimension attributes if using custom icons and dimension is specified
if ( isset( $custom_icons ) ) {
$width_attr = ! empty( $icons_width ) ? ' width="' . $icons_width . '"' : '';
$height_attr = ! empty( $icons_height ) ? ' height="' . $icons_height . '"' : '';
}
$link = $html_wrap_open . "";
$link .= ( $large_icons && ! isset( $custom_icons ) && ! $custom_service ) ? "" : "";
$link .= "" . $html_wrap_close;
}
$ind_html .= $link;
}
$ind_html .= $html_container_close;
if ( $is_amp ) {
$A2A_SHARE_SAVE_amp_icons_css = $amp_css;
add_action( 'amp_post_template_css', 'addtoany_amp_icons_css' );
}
if ( true == $output_later )
return $ind_html;
else
echo $ind_html;
}
function ADDTOANY_SHARE_SAVE_BUTTON( $args = array() ) {
// $args array = output_later, html_container_open, html_container_close, html_wrap_open, html_wrap_close, linkname, linkurl, no_universal_button
global $A2A_SHARE_SAVE_plugin_url_path;
$options = get_option( 'addtoany_options' );
$linkname = isset( $args['linkname'] ) ? $args['linkname'] : false;
$linkurl = isset( $args['linkurl'] ) ? $args['linkurl'] : false;
$linkmedia = isset( $args['linkmedia'] ) ? $args['linkmedia'] : false;
$args = array_merge($args, A2A_SHARE_SAVE_link_vars($linkname, $linkurl, $linkmedia)); // linkname_enc, etc.
$defaults = array(
'linkname' => '',
'linkurl' => '',
'linkmedia' => '',
'linkname_enc' => '',
'linkurl_enc' => '',
'linkmedia_enc' => '',
'use_current_page' => false,
'output_later' => false,
'is_kit' => false,
'html_container_open' => '',
'html_container_close' => '',
'html_wrap_open' => '',
'html_wrap_close' => '',
'html_content' => '',
'button_additional_classes' => '',
'icon_size' => isset( $options['icon_size'] ) ? $options['icon_size'] : '32',
'no_small_icons' => false,
'no_universal_button' => false,
);
$args = wp_parse_args( $args, $defaults );
extract( $args );
$is_feed = is_feed();
$is_amp = function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ? true : false;
$button_class = '';
$button_data_media = $is_kit || empty( $linkmedia ) ? '' : ' data-a2a-media="' . $linkmedia . '"';
$button_data_title = $is_kit || empty( $linkname ) ? '' : ' data-a2a-title="' . $linkname . '"';
$button_data_url = $is_kit || empty( $linkurl ) ? '' : ' data-a2a-url="' . $linkurl . '"';
$button_target = $is_amp ? ' target="_blank"' : '';
$button_href_querystring = ($is_feed || $is_amp) ? '#url=' . $linkurl_enc . '&title=' . $linkname_enc : '';
// If universal button is enabled
if ( ! $args['no_universal_button'] ) {
if ( ! isset( $options['button'] ) || 'A2A_SVG_32' == $options['button']
// Or, no_small_icons is true and a custom universal icon is not enabled (permitting a custom universal button in floating bar)
|| isset( $no_small_icons ) && true == $no_small_icons && ( ! isset( $options['button'] ) || 'CUSTOM' != $options['button'] )
) {
// If AMP (Accelerated Mobile Page)
if ( $is_amp ) {
$button_src = 'https://static.addtoany.com/buttons/a2a.svg';
$button_width = ! empty( $icon_size ) ? ' width="' . $icon_size .'"' : ' width="32"';
$button_height = ! empty( $icon_size ) ? ' height="' . $icon_size .'"' : ' height="32"';
} else {
// Skip button IMG for A2A icon insertion
$button_text = '';
}
} else if ( isset( $options['button'] ) && 'CUSTOM' == $options['button'] ) {
$button_src = $options['button_custom'];
$button_width = '';
$button_height = '';
} else if ( isset( $options['button'] ) && 'TEXT' == $options['button'] ) {
$button_text = stripslashes( $options[ 'button_text'] );
// Do not display universal icon (when large icons are used)
$button_class .= ' addtoany_no_icon';
} else {
$button_attrs = explode( '|', $options['button'] );
$button_fname = $button_attrs[0];
$button_width = ' width="' . $button_attrs[1] . '"';
$button_height = ' height="' . $button_attrs[2] . '"';
$button_src = $A2A_SHARE_SAVE_plugin_url_path . '/' . $button_fname;
$button_text = ( isset( $options['button_text'] ) ) ? stripslashes( $options['button_text'] ) : 'Share' ;
}
// Add additional classNames to .a2a_dd
$button_additional_classes = ! empty( $args['button_additional_classes'] ) ? ' ' . $args['button_additional_classes'] : '';
$style = '';
if ( isset( $button_fname ) && ( $button_fname == 'favicon.png' || $button_fname == 'share_16_16.png' ) ) {
if ( ! $is_feed ) {
$style_bg = 'background:url(' . $A2A_SHARE_SAVE_plugin_url_path . '/' . $button_fname . ') no-repeat scroll 4px 0px;';
$style = ' style="' . $style_bg . 'padding:0 0 0 25px;display:inline-block;height:16px;vertical-align:middle"'; // padding-left:21+4 (4=other icons padding)
// Wrap in to avoid showing the core-AddToAny Kit icon in addition to plugin's icon
$button_text = ( isset( $button_text ) ) ? '' . $button_text . '' : '';
}
}
if ( ! empty( $html_content ) ) {
$button = $html_content;
} elseif ( isset( $button_text ) && ( ! isset( $button_fname) || ! $button_fname || $button_fname == 'favicon.png' || $button_fname == 'share_16_16.png' ) ) {
$button = $button_text;
} else {
$style = '';
$button = '';
}
if ( isset( $options['button_show_count'] ) && $options['button_show_count'] == '1' ) {
$button_class .= ' a2a_counter';
}
$button_html = $html_container_open . $html_wrap_open . '' . $button . '';
} else {
// Universal button disabled
$button_html = '';
}
// Closing tags come after \n"
. '' . "\n";
echo $javascript_header;
}
add_action( 'wp_head', 'A2A_SHARE_SAVE_head_script' );
function A2A_SHARE_SAVE_footer_script() {
if ( is_admin() || is_feed() )
return;
$floating_html = ADDTOANY_SHARE_SAVE_FLOATING( array( 'output_later' => true ) );
echo $floating_html;
}
add_action( 'wp_footer', 'A2A_SHARE_SAVE_footer_script' );
function A2A_SHARE_SAVE_add_to_content( $content ) {
global $wp_current_filter;
// Don't add to get_the_excerpt because it's too early and strips tags (adding to the_excerpt is allowed)
if ( in_array( 'get_the_excerpt', (array) $wp_current_filter ) ) {
// Return early
return $content;
}
$sharing_disabled = get_post_meta( get_the_ID(), 'sharing_disabled', true );
$sharing_disabled = apply_filters( 'addtoany_sharing_disabled', $sharing_disabled );
if (
// Private post
get_post_status( get_the_ID() ) == 'private' ||
// Sharing disabled on post
! empty( $sharing_disabled )
) {
// Return early
return $content;
}
$is_feed = is_feed();
$options = get_option( 'addtoany_options' );
$post_type = get_post_type( get_the_ID() );
if (
(
// Legacy tags
// tag
strpos( $content, '' ) === false ||
// tag
strpos( $content, '' ) !== false
) &&
(
// Posts
// All posts
( is_singular('post') && isset( $options['display_in_posts'] ) && $options['display_in_posts'] == '-1' ) ||
// Front page posts
( is_home() && isset( $options['display_in_posts_on_front_page'] ) && $options['display_in_posts_on_front_page'] == '-1' ) ||
// Archive page posts (Category, Tag, Author and Date pages)
( is_archive() && isset( $options['display_in_posts_on_archive_pages'] ) && $options['display_in_posts_on_archive_pages'] == '-1' ) ||
// Search results posts (same as Archive page posts option)
( is_search() && isset( $options['display_in_posts_on_archive_pages'] ) && $options['display_in_posts_on_archive_pages'] == '-1' ) ||
// Excerpt (the_excerpt is the current filter)
( 'the_excerpt' == current_filter() && isset( $options['display_in_excerpts'] ) && $options['display_in_excerpts'] == '-1' ) ||
// Posts in feed
( $is_feed && isset( $options['display_in_feed'] ) && $options['display_in_feed'] == '-1' ) ||
// Custom post types
( $post_type && isset( $options['display_in_cpt_' . $post_type] ) && $options['display_in_cpt_' . $post_type] == '-1' ) ||
// Pages
// Individual pages
( is_page() && isset( $options['display_in_pages'] ) && $options['display_in_pages'] == '-1' ) ||
// Attachment (media) pages
( is_attachment() && isset( $options['display_in_attachments'] ) && $options['display_in_attachments'] == '-1' ) ||
// legacy tag
( (strpos( $content, '') !== false ) )
)
) {
// Return early
return $content;
}
$kit_args = array(
"output_later" => true,
"is_kit" => ( $is_feed ) ? false : true,
);
// If a Sharing Header is set
if ( isset( $options['header'] ) && '' != $options['header'] ) {
$html_header = '';
} else {
$html_header = '';
}
if ( $is_feed ) {
$container_wrap_open = '';
$container_wrap_close = '
';
$kit_args['html_container_open'] = '';
$kit_args['html_container_close'] = '';
$kit_args['html_wrap_open'] = '';
$kit_args['html_wrap_close'] = '';
} else {
$container_wrap_open = ''; // Contains placeholder
$container_wrap_open .= $html_header;
$container_wrap_close = '
';
}
$options['position'] = isset( $options['position'] ) ? $options['position'] : 'bottom';
if ($options['position'] == 'both' || $options['position'] == 'top') {
// Prepend to content
$content = sprintf( $container_wrap_open, 'addtoany_content_top' ) . ADDTOANY_SHARE_SAVE_KIT($kit_args) . $container_wrap_close . $content;
}
if ( $options['position'] == 'bottom' || $options['position'] == 'both') {
// Append to content
$content .= sprintf( $container_wrap_open, 'addtoany_content_bottom' ) . ADDTOANY_SHARE_SAVE_KIT($kit_args) . $container_wrap_close;
}
return $content;
}
function A2A_SHARE_SAVE_pre_get_posts( $query ) {
if ( $query->is_main_query() ) {
add_filter( 'the_content', 'A2A_SHARE_SAVE_add_to_content', 98 );
add_filter( 'the_excerpt', 'A2A_SHARE_SAVE_add_to_content', 98 );
}
}
add_action( 'pre_get_posts', 'A2A_SHARE_SAVE_pre_get_posts' );
// [addtoany url="https://www.example.com/page.html" title="Example Page"]
function A2A_SHARE_SAVE_shortcode( $attributes ) {
$attributes = shortcode_atts( array(
'url' => '',
'title' => '',
'media' => '',
'buttons' => '',
), $attributes, 'addtoany' );
$linkname = ! empty( $attributes['title'] ) ? $attributes['title'] : false;
$linkurl = ! empty( $attributes['url'] ) ? $attributes['url'] : false;
$linkmedia = ! empty( $attributes['media'] ) ? $attributes['media'] : false;
$buttons = ! empty( $buttons ) ? explode( ',', $buttons ) : array();
$output_later = true;
return ''
. ADDTOANY_SHARE_SAVE_KIT( compact( 'linkname', 'linkurl', 'linkmedia', 'output_later', 'buttons' ) )
. '
';
}
add_shortcode( 'addtoany', 'A2A_SHARE_SAVE_shortcode' );
function A2A_SHARE_SAVE_stylesheet() {
global $A2A_SHARE_SAVE_options, $A2A_SHARE_SAVE_plugin_url_path;
$options = $A2A_SHARE_SAVE_options;
// Use stylesheet?
if ( ! isset( $options['inline_css'] ) || $options['inline_css'] != '-1' && ! is_admin() ) {
wp_enqueue_style( 'A2A_SHARE_SAVE', $A2A_SHARE_SAVE_plugin_url_path . '/addtoany.min.css', false, '1.13' );
// wp_add_inline_style requires WP 3.3+
if ( '3.3' <= get_bloginfo( 'version' ) ) {
// Prepare inline CSS
$inline_css = '';
$vertical_type = ( isset( $options['floating_vertical'] ) && 'none' != $options['floating_vertical'] ) ? $options['floating_vertical'] : false;
$horizontal_type = ( isset( $options['floating_horizontal'] ) && 'none' != $options['floating_horizontal'] ) ? $options['floating_horizontal'] : false;
// If vertical bar is enabled
if ( $vertical_type &&
// and respsonsiveness is enabled
( ! isset( $options['floating_vertical_responsive'] ) || '-1' != $options['floating_vertical_responsive'] )
) {
// Get min-width for media query
$vertical_max_width = (
isset( $options['floating_vertical_responsive_max_width'] ) &&
is_numeric( $options['floating_vertical_responsive_max_width'] )
) ? $options['floating_vertical_responsive_max_width'] : '980';
// Set media query
$inline_css .= '@media screen and (max-width:' . $vertical_max_width . 'px){' . "\n"
. '.a2a_floating_style.a2a_vertical_style{display:none;}' . "\n"
. '}';
}
// If horizontal bar is enabled
if ( $horizontal_type &&
// and respsonsiveness is enabled
( ! isset( $options['floating_horizontal_responsive'] ) || '-1' != $options['floating_horizontal_responsive'] )
) {
// Get max-width for media query
$horizontal_min_width = (
isset( $options['floating_horizontal_responsive_min_width'] ) &&
is_numeric( $options['floating_horizontal_responsive_min_width'] )
) ? $options['floating_horizontal_responsive_min_width'] : '981';
// Insert newline if there is inline CSS already
$inline_css = 0 < strlen( $inline_css ) ? $inline_css . "\n" : $inline_css;
// Set media query
$inline_css .= '@media screen and (min-width:' . $horizontal_min_width . 'px){' . "\n"
. '.a2a_floating_style.a2a_default_style{display:none;}' . "\n"
. '}';
}
// If additional CSS (custom CSS for AddToAny) is set
if ( ! empty( $options['additional_css'] ) ) {
$custom_css = stripslashes( $options['additional_css'] );
// Insert newline if there is inline CSS already
$inline_css = 0 < strlen( $inline_css ) ? $inline_css . "\n" : $inline_css;
$inline_css .= $custom_css;
}
// If there is inline CSS
if ( 0 < strlen( $inline_css ) ) {
// Insert inline CSS
wp_add_inline_style( 'A2A_SHARE_SAVE', $inline_css );
}
}
}
}
add_action( 'wp_print_styles', 'A2A_SHARE_SAVE_stylesheet' );
function A2A_SHARE_SAVE_enqueue_script() {
global $A2A_SHARE_SAVE_plugin_url_path;
if ( wp_script_is( 'jquery', 'registered' ) ) {
wp_enqueue_script( 'addtoany', $A2A_SHARE_SAVE_plugin_url_path . '/addtoany.min.js', array( 'jquery' ), '1.0' );
}
}
add_action( 'wp_enqueue_scripts', 'A2A_SHARE_SAVE_enqueue_script' );
/**
* Cache AddToAny
*/
function A2A_SHARE_SAVE_refresh_cache() {
$contents = wp_remote_fopen( 'https://www.addtoany.com/ext/updater/files_list/' );
$file_urls = explode( "\n", $contents, 20 );
$upload_dir = wp_upload_dir();
// Make directory if needed
if ( ! wp_mkdir_p( dirname( $upload_dir['basedir'] . '/addtoany/foo' ) ) ) {
$message = sprintf( __( 'Unable to create directory %s. Is its parent directory writable by the server?' ), dirname( $new_file ) );
return array( 'error' => $message );
}
if ( count( $file_urls ) > 0 ) {
for ( $i = 0; $i < count( $file_urls ); $i++ ) {
// Download files
$file_url = trim( $file_urls[ $i ] );
$file_name = substr( strrchr( $file_url, '/' ), 1, 99 );
// Place files in uploads/addtoany directory
wp_remote_get( $file_url, array(
'filename' => $upload_dir['basedir'] . '/addtoany/' . $file_name,
'stream' => true, // Required to use `filename` arg
) );
}
}
}
function A2A_SHARE_SAVE_schedule_cache() {
// WP "Cron" requires WP version 2.1
$timestamp = wp_next_scheduled( 'A2A_SHARE_SAVE_refresh_cache' );
if ( ! $timestamp) {
// Only schedule if currently unscheduled
wp_schedule_event( time(), 'daily', 'A2A_SHARE_SAVE_refresh_cache' );
}
}
function A2A_SHARE_SAVE_unschedule_cache() {
$timestamp = wp_next_scheduled( 'A2A_SHARE_SAVE_refresh_cache' );
wp_unschedule_event( $timestamp, 'A2A_SHARE_SAVE_refresh_cache' );
}
/**
* Admin Options
*/
if ( is_admin() ) {
include_once( $A2A_SHARE_SAVE_plugin_dir . '/addtoany.admin.php' );
}
function A2A_SHARE_SAVE_add_menu_link() {
$page = add_options_page(
__( 'AddToAny Share Settings', 'add-to-any' ),
__( 'AddToAny', 'add-to-any' ),
'manage_options',
'addtoany',
'A2A_SHARE_SAVE_options_page'
);
/* Using registered $page handle to hook script load, to only load in AddToAny admin */
add_filter( 'admin_print_scripts-' . $page, 'A2A_SHARE_SAVE_scripts' );
}
add_filter( 'admin_menu', 'A2A_SHARE_SAVE_add_menu_link' );
function A2A_SHARE_SAVE_widgets_init() {
global $A2A_SHARE_SAVE_plugin_dir;
include_once( $A2A_SHARE_SAVE_plugin_dir . '/addtoany.widgets.php' );
register_widget( 'A2A_SHARE_SAVE_Widget' );
register_widget( 'A2A_Follow_Widget' );
}
add_action( 'widgets_init', 'A2A_SHARE_SAVE_widgets_init' );
// Place in Option List on Settings > Plugins page
function A2A_SHARE_SAVE_actlinks( $links, $file ) {
// Static so we don't call plugin_basename on every plugin row.
static $this_plugin;
if ( ! $this_plugin ) {
$this_plugin = plugin_basename( __FILE__ );
}
if ( $file == $this_plugin ) {
$settings_link = '' . __( 'Settings' ) . '';
array_unshift( $links, $settings_link ); // before other links
}
return $links;
}
add_filter( 'plugin_action_links', 'A2A_SHARE_SAVE_actlinks', 10, 2 );