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

11 lines
256 B
PHP

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