MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/www/india/wp-content/plugins/wptouch/themes/foundation/modules/sharing/sharing.php
<?php
add_action( 'foundation_module_init_mobile', 'foundation_sharing_init' );
add_action( 'wptouch_admin_page_render_wptouch-admin-theme-settings', 'foundation_sharing_settings' );

function foundation_sharing_init() {
	$settings = foundation_get_settings();

	switch ( $settings->share_location ) {
		case 'top':
			add_filter( 'the_content', 'foundation_handle_share_links_top', 100 );
			break;
		case 'bottom':
			add_filter( 'the_content', 'foundation_handle_share_links_bottom', 100 );
			break;
	}
}

global $foundation_sharing_links_enabled;
$foundation_sharing_links_enabled = true;

function foundation_enable_sharing_links() {
	global $foundation_sharing_links_enabled;
	$foundation_sharing_links_enabled = true;
}

function foundation_disable_sharing_links() {
	global $foundation_sharing_links_enabled;
	$foundation_sharing_links_enabled = false;
}

function foundation_sharing_classes() {
	$share_classes = array( 'sharing-options', 'clearfix' );

	$settings = foundation_get_settings();

	$locale = wptouch_get_locale();
	if ( in_array( $locale, array( 'es', 'el', 'pt', 'id_ID', 'ru_RU', 'ar' ) ) ) {
		$share_classes[] = 'long';
	}


	if ( $settings->share_location == 'top' ) {
		$share_classes[] = 'share-top';
	} else {
		$share_classes[] = 'share-bottom';
	}

	$share_classes[] = 'style-' . $settings->share_colour_scheme;

	echo implode( ' ', apply_filters( 'foundation_share_classes', $share_classes ) );
}

function foundation_sharing_content() {
	$settings = foundation_get_settings();

	$content = '';
	if ( $settings->share_on_pages == true ) {
		$is_page = is_page();
	} else {
		$is_page = '';
	}

	if ( $settings->show_share && ( is_single() || $is_page ) ) {
		$content = wptouch_capture_include_file( dirname( __FILE__ ) . '/sharing-html.php' );
	}

	return $content;
}

function foundation_handle_share_links( $content, $top_share = false ) {
	$share_links = foundation_sharing_content();
	global $foundation_sharing_links_enabled;

	if ( $foundation_sharing_links_enabled && !is_feed() && !is_home() && $top_share ) {
		return $share_links . $content;
	} elseif ( $foundation_sharing_links_enabled && !is_feed() && !is_home() ) {
		return $content . $share_links;
	} else {
		return $content;
	}
}

function foundation_handle_share_links_top( $content ) {
	return foundation_handle_share_links( $content, true );
}

function foundation_handle_share_links_bottom( $content ) {
	return foundation_handle_share_links( $content, false );
}

function foundation_sharing_settings( $page_options ) {
	wptouch_add_page_section(
		FOUNDATION_PAGE_BRANDING,
		__( 'Sharing', 'wptouch-pro' ),
		'social-sharing',
		array(
			wptouch_add_setting(
				'checkbox',
				'show_share',
				__( 'Show sharing links', 'wptouch-pro' ),
				__( 'Will show Facebook, Twitter, Google+ and Email buttons on single posts.', 'wptouch-pro' ),
				WPTOUCH_SETTING_BASIC,
				'1.0'
			),
			wptouch_add_setting(
				'checkbox',
				'share_on_pages',
				__( 'Show sharing links on pages', 'wptouch-pro' ),
				__( 'Will show Facebook, Twitter, Google+ and Email buttons on pages as well as single posts.', 'wptouch-pro' ),
				WPTOUCH_SETTING_ADVANCED,
				'2.0'
			),
			wptouch_add_setting(
				'radiolist',
				'share_location',
				__( 'Sharing links location', 'wptouch-pro' ),
				'',
				WPTOUCH_SETTING_ADVANCED,
				'1.0',
				array(
					'top' => __( 'Above post content', 'wptouch-pro' ),
					'bottom' => __( 'Below post content', 'wptouch-pro' )
				)
			),
			wptouch_add_setting(
				'radiolist',
				'share_colour_scheme',
				__( 'Color scheme', 'wptouch-pro' ),
				'',
				WPTOUCH_SETTING_BASIC,
				'1.0',
				array(
					'default' => __( 'Theme colors', 'wptouch-pro' ),
					'vibrant' => __( 'Social network colors', 'wptouch-pro' )
				)
			)
		),
		$page_options,
		FOUNDATION_SETTING_DOMAIN
	);

	return $page_options;
}