2011-01-26 16:20:12 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* oembed plugin
|
|
|
|
*
|
|
|
|
* oEmbed is a format for allowing an embedded representation of a URL on third party sites
|
|
|
|
* http://www.oembed.com/
|
|
|
|
*
|
|
|
|
*/
|
2011-05-22 21:56:47 +02:00
|
|
|
|
|
|
|
require_once('include/oembed.php');
|
|
|
|
|
2011-01-26 16:20:12 +01:00
|
|
|
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){
|
2011-05-22 21:56:47 +02:00
|
|
|
$a->page['htmlhead'] .= sprintf('<script src="%s/oembed/oembed.js"></script>', $a->get_baseurl());
|
2011-01-26 16:20:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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>
|
|
|
|
';
|
|
|
|
}
|
|
|
|
|
2011-01-26 17:17:02 +01:00
|
|
|
|
2011-05-22 21:56:47 +02:00
|
|
|
function oembed_module() {
|
|
|
|
return;
|
|
|
|
}
|
2011-01-26 16:20:12 +01:00
|
|
|
|
2011-05-22 21:56:47 +02:00
|
|
|
function oembed_init(&$a) {
|
|
|
|
if ($a->argv[1]=='oembed.js'){
|
|
|
|
$tpl = file_get_contents('addon/oembed/oembed.js');
|
|
|
|
echo replace_macros($tpl, array(
|
|
|
|
'$oembed_message' => t('URL to embed:'),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($a->argv[1]=='b2h'){
|
|
|
|
$url = array( "", trim(hex2bin($_GET['url'])));
|
|
|
|
echo "<span class='oembed'>".oembed_replacecb($url)."</span>";
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($a->argv[1]=='h2b'){
|
|
|
|
$text = trim(hex2bin($_GET['text']));
|
|
|
|
echo oembed_html2bbcode($text);
|
|
|
|
}
|
|
|
|
|
|
|
|
killme();
|
|
|
|
|
|
|
|
}
|
2011-01-26 16:20:12 +01:00
|
|
|
|
|
|
|
?>
|