| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| 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.php 0000604 00000002634 15115063322 0036367 0 ustar 00 home/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.php 0000644 00000002634 15115605472 0034274 0 ustar 00 home/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().