additional_plugins/serendipity_event_oembed/oembed/OohEmbedProvider.class.php

12 lines
361 B
PHP
Raw Normal View History

<?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);
}
}