<?php
	global $post;
	$post_status = get_post_status( $post->ID );
	if( $post_status == 'publish' ){
?>
		<p><a target="_blank" href="<?php echo sprintf(
			'admin.php?page=flclinks&action=add&url=%s&anchor=%s',
			urlencode(get_permalink($post->ID)),
			urlencode(get_the_title($post->ID))	); ?>">Add to footer links</a></p>
<?php
	}
?>
