additional_plugins/serendipity_event_oembed/oembed/EmbedlyProvider.class.php
Grischa Brockhaus a46206acfc OEmbed:
* Added "generic providers" embed.ly and oohembed.com. 
* Removed the depending definitions in providers.xml
* Added a "generic provider" configuration with embed.ly API key.
2011-12-20 11:21:20 +01:00

12 lines
381 B
PHP

<?php
class EmbedlyProvider extends OEmbedProvider {
public function match($url){
// Embedly should match always
return 1;
}
public function __construct($url, $apikey, $maxwidth=null, $maxheight=null){
$endpoint = "http://api.embed.ly/1/oembed?key=$apikey";
parent::__construct($url,$endpoint,false, $maxwidth,$maxheight, true);
}
}