additional_plugins/serendipity_event_oembed/oembed/OohEmbedProvider.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
361 B
PHP

<?php
class OohEmbedProvider extends OEmbedProvider {
public function match($url){
// Embedly should match always
return 1;
}
public function __construct($url, $maxwidth=null, $maxheight=null){
$endpoint = "http://oohembed.com/oohembed/";
parent::__construct($url,$endpoint,true, $maxwidth,$maxheight, true);
}
}