fictioneer/partials/_modal-sharing.php
2023-01-21 01:31:34 +01:00

68 lines
3.0 KiB
PHP

<?php
/**
* Partial: Sharing Modal
*
* @package WordPress
* @subpackage Fictioneer
* @since 4.0
*/
?>
<div id="sharing-modal" class="sharing modal">
<label for="modal-sharing-toggle" class="background-close"></label>
<div class="modal__wrapper">
<label class="close" for="modal-sharing-toggle">
<?php fictioneer_icon( 'fa-xmark' ); ?>
</label>
<h4 class="modal__header drag-anchor"><?php _ex( 'Share', 'Share modal heading.', 'fictioneer' ); ?></h4>
<div class="modal__row media-buttons _modal">
<?php if ( ! get_option( 'fictioneer_disable_facebook_share' ) ) : ?>
<a href="https://www.facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>" target="_blank" rel="noopener" class="facebook">
<i class="fab fa-facebook"></i>
</a>
<?php endif; ?>
<?php if ( ! get_option( 'fictioneer_disable_twitter_share' ) ) : ?>
<a href="https://twitter.com/intent/tweet/?text=<?php the_title(); ?>&url=<?php the_permalink(); ?>" target="_blank" rel="noopener" class="twitter">
<i class="fab fa-twitter"></i>
</a>
<?php endif; ?>
<?php if ( ! get_option( 'fictioneer_disable_tumblr_share' ) ) : ?>
<a href="http://tumblr.com/widgets/share/tool?canonicalUrl=<?php the_permalink(); ?>" target="_blank" rel="noopener" class="tumblr">
<i class="fa-brands fa-tumblr-square"></i>
</a>
<?php endif; ?>
<?php if ( ! get_option( 'fictioneer_disable_reddit_share' ) ) : ?>
<a href="http://www.reddit.com/submit?url=<?php the_permalink(); ?>&title=<?php echo urlencode( get_the_title() ); ?>" target="_blank" rel="noopener" class="reddit">
<i class="fa-brands fa-reddit"></i>
</a>
<?php endif; ?>
<?php if ( ! get_option( 'fictioneer_disable_mastodon_share' ) ) : ?>
<a href="https://toot.kytta.dev/?text=Check%20out%20<?php the_permalink(); ?>" target="_blank" rel="noopener" class="mastodon">
<i class="fa-brands fa-mastodon"></i>
</a>
<?php endif; ?>
<?php if ( ! get_option( 'fictioneer_disable_telegram_share' ) ) : ?>
<a href="https://t.me/share/url?url=<?php the_permalink(); ?>&text=Check%20out%20<?php echo urlencode( get_the_title() ); ?>" target="_blank" rel="noopener" class="telegram">
<i class="fa-brands fa-telegram"></i>
</a>
<?php endif; ?>
<?php if ( ! get_option( 'fictioneer_disable_whatsapp_share' ) ) : ?>
<a href="https://web.whatsapp.com/send/?text=<?php the_permalink(); ?>" target="_blank" rel="noopener" class="whatsapp" data-action="share/whatsapp/share" data-original-title="whatsapp">
<i class="fa-brands fa-whatsapp"></i>
</a>
<?php endif; ?>
</div>
<div class="modal__row">
<input type="text" value="<?php the_permalink(); ?>" onClick="this.select(); fcn_copyToClipboard('<?php the_permalink(); ?>', '<?php _e( 'Link copied to clipboard!', 'fictioneer' ); ?>')" readonly>
</div>
</div>
</div>