61 lines
2.2 KiB
PHP
61 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* oembed plugin
|
|
*
|
|
* oEmbed is a format for allowing an embedded representation of a URL on third party sites
|
|
* http://www.oembed.com/
|
|
*
|
|
*/
|
|
|
|
function oembed_install() {
|
|
register_hook('jot_tool', 'addon/oembed/oembed.php', 'oembed_hook_jot_tool');
|
|
register_hook('page_header', 'addon/oembed/oembed.php', 'oembed_hook_page_header');
|
|
}
|
|
|
|
function oembed_uninstall() {
|
|
unregister_hook('jot_tool', 'addon/oembed/oembed.php', 'oembed_hook_jot_tool');
|
|
unregister_hook('page_header', 'addon/oembed/oembed.php', 'oembed_hook_page_header');
|
|
}
|
|
|
|
function oembed_hook_page_header($a, &$b){
|
|
|
|
if(($a->module !== 'network') && ($a->module !== 'profile'))
|
|
return;
|
|
|
|
$b .= '<script src="addon/oembed/oembed.js"></script>
|
|
<style>#oembed.hide { display: none }
|
|
#oembed {
|
|
display:block; position: absolute; width: 300px; height:200px;
|
|
background-color:#fff; color: #000;
|
|
border:2px solid #8888FF; padding: 1em;
|
|
top: 200px; left: 400px; z-index:2000;
|
|
}
|
|
#oembed_url { width: 100%; margin-bottom:3px;}
|
|
</style>';
|
|
|
|
$b .= '
|
|
<div id="oembed" class="hide"><input id="oembed_url">
|
|
<input type="button" value="Embed" onclick="oembed_do()" style="float:left;">
|
|
<a onclick="oembed(); return false;" style="float:right;"><img onmouseout="imgdull(this);" onmouseover="imgbright(this);" class="wall-item-delete-icon" src="images/b_drophide.gif" style="width: 16px; height: 16px;"></a>
|
|
<div style="clear:both">Paste a link from 5min.com, Amazon Product Image, blip.tv, Clikthrough, CollegeHumor Video,
|
|
Daily Show with Jon Stewart, Dailymotion, dotSUB.com, Flickr Photos, Funny or Die Video,
|
|
Google Video, Hulu, Kinomap, LiveJournal UserPic, Metacafe, National Film Board of Canada,
|
|
Phodroid Photos, Photobucket, Qik Video, Revision3, Scribd, SlideShare, TwitPic, Twitter Status,
|
|
Viddler Video, Vimeo, Wikipedia, Wordpress.com, XKCD Comic, YFrog, YouTube</div>
|
|
</div>
|
|
';
|
|
}
|
|
|
|
|
|
function oembed_hook_jot_tool($a, &$b) {
|
|
$b .= '
|
|
<div class="tool-wrapper" style="display: $visitor;" >
|
|
<img class="tool-link" src="addon/oembed/oembed.png" alt="Embed" title="Embed" onclick="oembed();" />
|
|
</div>
|
|
';
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|