<?php
$filmik = "http://www.youtube.com/embed/jdVGxUd5fu4";
echo'
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script>
FB.init({
appId : "XXX",
status : true,
cookie : true,
xfbml : true
});
</script>
<script>
$(document).ready(function(){
FB.getLoginStatus(function(response) {
if (response.status == "connected") {
var user_id = response.authResponse.userID;
var page_id = "XXX"; //coca cola
var fql_query = "SELECT uid FROM page_fan WHERE page_id =" + page_id + " and uid=" + user_id;
var the_query = FB.Data.query(fql_query);
the_query.wait(function(rows) {
if (rows.length == 1 && rows[0].uid == user_id) {
[b]XXX1==1
[/b]
//here you could also do some ajax and get the content for a "liker" instead of simply showing a hidden div in the page.
} else {
$("#blokada").show();
//and here you could get the content for a non liker in ajax...
}
});
} else {
// user is not logged in
}
});
});
</script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript" src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : "XXX", // should be replaced with your Facebook Application ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
</script>
<script type="text/javascript">
function streampublish_popup(){
FB.ui(
{
method: "stream.publish",
attachment: {
name: "Demo Pulish To Wall With Popup And Call Back Function",
description: (
"I have experienced with Share On Wall with Popup windows and would like to share with you. Check it now."
),
href: "http://4rapiddev.com/facebook-graph-api/facebook-publish-to-wall-with-popup-or-dialog-and-call-back/",
media: [
{
"type":"image",
"src":"http://4rapiddev.com/wp-content/uploads/2011/09/Example-Publish-To-Wall-With-Popup-Windows.jpg",
"href":"http://4rapiddev.com/facebook-graph-api/facebook-publish-to-wall-with-popup-or-dialog-and-call-back/"
}
]
},
display: "popup"
},
function(response) {
if (response && response.post_id) {
[b]XXX2==2[/b]
} else {
$("#blokada1").show();
}
});
}
</script>';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<div id="fb-root"></div>
<a href="java script:void(0);" onClick="streampublish_popup();">Opublikuj na tablicy.</a><br><br>
<div id="filmik" style="display:none" ><iframe width="560" height="315" src="<?php echo $filmik; ?>" frameborder="0" allowfullscreen></iframe></div>
<div id="blokada" style="display:none" >Nie polubi3e? strony

</div>
<div id="blokada1" style="display:none" >Nie syhareowales strony

</div>
</body>
</html>