Your IP : 216.73.216.162


Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/
Upload File :
Current File : /home/x/b/o/xbodynamge/namtation/wp-content/hestia-social-sharing-tpl.php.tar

plugins/themeisle-companion/obfx_modules/social-sharing/views/hestia-social-sharing-tpl.php000060400000002634151150633220036367 0ustar00home/xbodynamge/crosstraining/wp-content<?php
/**
 * The Front End View for Social Sharing Module of Orbit Fox tailored to Hestia.
 *
 * @link       https://themeisle.com
 * @since      1.0.0
 *
 * @package    Orbit_Fox_Modules
 * @subpackage Orbit_Fox_Modules/stats/social-sharing
 * @codeCoverageIgnore
 */

if ( ! empty( $social_links_array ) ) { ?>
	<div class="obfx-hestia-social-wrapper">
		<ul class="entry-social 
		<?php
		if ( ! empty( $desktop_class ) ) {
			echo esc_attr( $desktop_class );
		}
		if ( ! empty( $mobile_class ) ) {
			echo esc_attr( $mobile_class );
		}
		?>
		">
			<?php
			foreach ( $social_links_array as $network_data ) {
				$class = '';
				if ( $network_data['show_desktop'] == '0' ) {
					$class .= 'obfx-hide-desktop-socials ';
				}
				if ( $network_data['show_mobile'] == '0' ) {
					$class .= 'obfx-hide-mobile-socials ';
				}
				?>
					<li class="<?php echo esc_attr( $class ); ?>">
						<a rel="tooltip" data-original-title="<?php echo esc_attr( __( 'Share on ', 'themeisle-companion' ) . $network_data['nicename'] ); ?>" class = "btn btn-just-icon btn-round btn-<?php echo esc_attr( $network_data['icon'] ); ?>" <?php echo ( isset( $network_data['target'] ) && $network_data['target'] != '0' ) ? 'target="_blank"' : ''; ?> href="<?php echo esc_url( $network_data['link'] ); ?>"> <i class="socicon-<?php echo esc_attr( $network_data['icon'] ); ?>"></i>
						</a>
					</li>
			<?php } ?>
		</ul>
	</div>
	<?php
}// End if().
plugins/themeisle-companion/obfx_modules/social-sharing/views/hestia-social-sharing-tpl.php000064400000002634151156054720034274 0ustar00home/xbodynamge/dev/wp-content<?php
/**
 * The Front End View for Social Sharing Module of Orbit Fox tailored to Hestia.
 *
 * @link       https://themeisle.com
 * @since      1.0.0
 *
 * @package    Orbit_Fox_Modules
 * @subpackage Orbit_Fox_Modules/stats/social-sharing
 * @codeCoverageIgnore
 */

if ( ! empty( $social_links_array ) ) { ?>
	<div class="obfx-hestia-social-wrapper">
		<ul class="entry-social 
		<?php
		if ( ! empty( $desktop_class ) ) {
			echo esc_attr( $desktop_class );
		}
		if ( ! empty( $mobile_class ) ) {
			echo esc_attr( $mobile_class );
		}
		?>
		">
			<?php
			foreach ( $social_links_array as $network_data ) {
				$class = '';
				if ( $network_data['show_desktop'] == '0' ) {
					$class .= 'obfx-hide-desktop-socials ';
				}
				if ( $network_data['show_mobile'] == '0' ) {
					$class .= 'obfx-hide-mobile-socials ';
				}
				?>
					<li class="<?php echo esc_attr( $class ); ?>">
						<a rel="tooltip" data-original-title="<?php echo esc_attr( __( 'Share on ', 'themeisle-companion' ) . $network_data['nicename'] ); ?>" class = "btn btn-just-icon btn-round btn-<?php echo esc_attr( $network_data['icon'] ); ?>" <?php echo ( isset( $network_data['target'] ) && $network_data['target'] != '0' ) ? 'target="_blank"' : ''; ?> href="<?php echo esc_url( $network_data['link'] ); ?>"> <i class="socicon-<?php echo esc_attr( $network_data['icon'] ); ?>"></i>
						</a>
					</li>
			<?php } ?>
		</ul>
	</div>
	<?php
}// End if().