get_authorpage_social_links_array( parent::$args );
} else {
$social_networks = $this->get_sharingbox_social_links_array( parent::$args );
}
$html = '';
$icons = '';
$i = 0;
if ( isset( parent::$args['authorpage'] ) && 'yes' == parent::$args['authorpage'] && isset( parent::$args['color_type'] ) ) {
$per_icon_colors = ( 'brand' === parent::$args['color_type'] ) ? true : false;
} else {
$per_icon_colors = ( 'brand' == Avada()->settings->get( 'sharing_social_links_color_type' ) ) ? true : false;
}
$number_of_social_networks = count( $social_networks );
foreach ( $social_networks as $network => $icon_args ) {
$icon_options = array(
'social_network' => $network,
'social_link' => $icon_args['url'],
);
if ( $per_icon_colors ) {
$network_for_colors = str_replace( 'sharing_', '', $network );
$network_for_colors = ( in_array( $network_for_colors, array( 'google', 'googleplus' ) ) ) ? 'gplus' : $network_for_colors;
if ( parent::$args['icon_boxed'] ) {
$icon_options['icon_color'] = '#ffffff';
$icon_options['box_color'] = $social_networks_full_array[ $network_for_colors ]['color'];
} else {
$icon_options['icon_color'] = $social_networks_full_array[ $network_for_colors ]['color'];
$icon_options['box_color'] = '#ffffff';
}
} else {
$icon_options['icon_color'] = Avada()->settings->get( 'sharing_social_links_icon_color' );
$icon_options['box_color'] = Avada()->settings->get( 'sharing_social_links_box_color' );
}
// Check if are on the last social icon;
// $i needs to be incremented first to make it match the count() value.
$i++;
$icon_options['last'] = ( $i == $number_of_social_networks ) ? true : false;
$icons .= parent::get_markup( $icon_options );
}
if ( ! empty( $icons ) ) {
$attr = array(
'class' => 'fusion-social-networks',
);
if ( parent::$args['icon_boxed'] ) {
$attr['class'] .= ' boxed-icons';
}
$html = '
' . $icons;
if ( isset( parent::$args['position'] ) && ( 'header' == parent::$args['position'] || 'footer' == parent::$args['position'] ) ) {
$html .= '
';
} else {
$html .= '';
}
}
return apply_filters( 'avada_social_sharing_html', $html, $args );
}
/**
* Set up the array for sharing box social networks.
*
* @access public
* @since 3.5.0
* @param array $args Holding all necessarry data for social icons.
* @return array The social links array containing the social media and links to them.
*/
public function get_sharingbox_social_links_array( $args ) {
$social_links_array = array();
if ( Avada()->settings->get( 'sharing_facebook' ) ) {
if ( ! avada_jetpack_is_mobile() ) {
$facebook_url = 'https://www.facebook.com/sharer.php?u=' . rawurlencode( $args['link'] ) . '&t=' . rawurlencode( $args['title'] );
} else {
$facebook_url = 'https://m.facebook.com/sharer.php?u=' . $args['link'] . '&t=' . rawurlencode( $args['title'] );
}
$social_links_array['facebook'] = array(
'url' => $facebook_url,
);
}
if ( Avada()->settings->get( 'sharing_twitter' ) ) {
$social_links_array['twitter'] = array(
'url' => 'https://twitter.com/share?text=' . rawurlencode( html_entity_decode( $args['title'], ENT_COMPAT, 'UTF-8' ) ) . '&url=' . rawurlencode( $args['link'] ),
);
}
if ( Avada()->settings->get( 'sharing_linkedin' ) ) {
$social_links_array['linkedin'] = array(
'url' => 'https://www.linkedin.com/shareArticle?mini=true&url=' . $args['link'] . '&title=' . rawurlencode( $args['title'] ) . '&summary=' . rawurlencode( mb_substr( html_entity_decode( $args['description'], ENT_QUOTES, 'UTF-8' ), 0, 256 ) ),
);
}
if ( Avada()->settings->get( 'sharing_reddit' ) ) {
$social_links_array['reddit'] = array(
'url' => 'http://reddit.com/submit?url=' . $args['link'] . '&title=' . rawurlencode( $args['title'] ),
);
}
if ( Avada()->settings->get( 'sharing_whatsapp' ) ) {
$social_links_array['whatsapp'] = array(
'url' => 'https://api.whatsapp.com/send?text=' . rawurlencode( $args['link'] ),
);
}
if ( Avada()->settings->get( 'sharing_google' ) ) {
$social_links_array['googleplus'] = array(
'url' => 'https://plus.google.com/share?url=' . $args['link'],
);
}
if ( Avada()->settings->get( 'sharing_tumblr' ) ) {
$social_links_array['tumblr'] = array(
'url' => 'http://www.tumblr.com/share/link?url=' . rawurlencode( $args['link'] ) . '&name=' . rawurlencode( $args['title'] ) . '&description=' . rawurlencode( $args['description'] ),
);
}
if ( Avada()->settings->get( 'sharing_pinterest' ) ) {
$social_links_array['pinterest'] = array(
'url' => 'http://pinterest.com/pin/create/button/?url=' . urlencode( $args['link'] ) . '&description=' . rawurlencode( $args['description'] ) . '&media=' . rawurlencode( $args['pinterest_image'] ),
);
}
if ( Avada()->settings->get( 'sharing_vk' ) ) {
$social_links_array['vk'] = array(
'url' => 'http://vkontakte.ru/share.php?url=' . rawurlencode( $args['link'] ) . '&title=' . rawurlencode( $args['title'] ) . '&description=' . rawurlencode( $args['description'] ),
);
}
if ( Avada()->settings->get( 'sharing_email' ) ) {
$social_links_array['email'] = array(
'url' => 'mailto:?subject=' . rawurlencode( $args['title'] ) . '&body=' . $args['link'],
);
}
return $social_links_array;
}
/**
* Set up the array for author page social networks.
*
* @since 3.5.0
* @access public
* @param array $args Holding all necessarry data for social icons.
* @return array The social links array containing the social media and links to them.
*/
public function get_authorpage_social_links_array( $args ) {
$social_links_array = array();
if ( get_the_author_meta( 'author_facebook', $args['author_id'] ) ) {
$social_links_array['facebook'] = array(
'url' => get_the_author_meta( 'author_facebook', $args['author_id'] ),
);
}
if ( get_the_author_meta( 'author_twitter', $args['author_id'] ) ) {
$social_links_array['twitter'] = array(
'url' => get_the_author_meta( 'author_twitter', $args['author_id'] ),
);
}
if ( get_the_author_meta( 'author_linkedin', $args['author_id'] ) ) {
$social_links_array['linkedin'] = array(
'url' => get_the_author_meta( 'author_linkedin', $args['author_id'] ),
);
}
if ( get_the_author_meta( 'author_dribble', $args['author_id'] ) ) {
$social_links_array['dribbble'] = array(
'url' => get_the_author_meta( 'author_dribble', $args['author_id'] ),
);
}
if ( get_the_author_meta( 'author_whatsapp', $args['author_id'] ) ) {
$social_links_array['whatsapp'] = array(
'url' => get_the_author_meta( 'author_whatsapp', $args['author_id'] ),
);
}
if ( get_the_author_meta( 'author_gplus', $args['author_id'] ) ) {
$social_links_array['googleplus'] = array(
'url' => get_the_author_meta( 'author_gplus', $args['author_id'] ),
);
}
if ( get_the_author_meta( 'author_email', $args['author_id'] ) ) {
$social_links_array['email'] = array(
'url' => get_the_author_meta( 'author_email', $args['author_id'] ),
);
}
return $social_links_array;
}
}
/* Omit closing PHP tag to avoid "Headers already sent" issues. */