Skip to content

Instantly share code, notes, and snippets.

@ozh
Created April 19, 2022 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozh/25b2074dd275ed091aa1869200894c4d to your computer and use it in GitHub Desktop.
Save ozh/25b2074dd275ed091aa1869200894c4d to your computer and use it in GitHub Desktop.
YOURLS Share on Tumblr

Plugin: Share on Tumblr

In the Quick Share box, add a one-click share to Tumblr link.

Install

  • In /user/plugins, create a new folder named quickshare-on-tumblr
  • In this new directory, create a blank file named plugin.php
  • In this new file, cut and paste the following code
  • Go to the Plugins administration page and activate the plugin

Code

<?php
/**
Plugin Name: Share on Tumbler
Plugin URI: http://yourls.org/
Description: Add <a href="http://tumblr.com">Tumblr</a> to the list of Quick Share destinations
Version: 1.0
Author: Ozh
Author URI: http://ozh.org/
**/


yourls_add_action( 'share_links', 'ozh_yourls_tumblr' );

function ozh_yourls_tumblr( $args ) {
	list( $longurl, $shorturl, $title, $text ) = $args;
	$shorturl = rawurlencode( $shorturl );
	$title = rawurlencode( htmlspecialchars_decode( $title ) );
	echo <<<TUMBLR
	
	<style type="text/css">
	#share_tb{background:transparent url(http://www.tumblr.com/favicon.ico) left center no-repeat;}
	</style>
	
	<a id="share_tb"
		href="http://www.tumblr.com/share?v=3&amp;u=$shorturl&amp;t=$title"
		title="Share on Tumblr"
		onclick="yourls_share_on_tumblr();return false;">Tumblr
	</a>
	
	<script type="text/javascript">
	// Send to Tumblr open window
	function yourls_share_on_tumblr() {
		var url = $('#share_tb').attr('href');
		window.open(url, 'tb', 'toolbar=no,width=800,height=550');
		return false;
	}
	// Dynamically update Tumblr link
	// when user clicks on the "Share" Action icon, event $('#tweet_body').keypress() is fired, so we'll add to this
	$('#tweet_body').keypress(function(){
		var title = encodeURIComponent( $('#titlelink').val() );
		var url = encodeURIComponent( $('#copylink').val() );
		var tb = 'http://www.tumblr.com/share?v=3&u='+url+'&t='+title;
		$('#share_tb').attr('href', tb);		
	});
	</script>

TUMBLR;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment