ttrss/include/autoload.php

13 lines
224 B
PHP
Raw Normal View History

2013-04-17 13:36:34 +02:00
<?php
function __autoload($class) {
$class_file = str_replace("_", "/", strtolower(basename($class)));
$file = dirname(__FILE__)."/../classes/$class_file.php";
if (file_exists($file)) {
require $file;
}
}
?>