additional_plugins/serendipity_event_oembed/oembed/config.php
2011-12-14 03:20:11 +01:00

11 lines
281 B
PHP

<?php
define("PROVIDER_XML", dirname(__FILE__) . '/' . "providers.xml");
define("TEMPLATE_PATH", dirname(__FILE__) . '/' . "templates/");
function __autoload($classname){
if(file_exists($x=dirname(__FILE__) . '/' .$classname.".class.php")) {
require_once($x);
}
}
?>