1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-28 12:10:52 +02:00
ttrss/include/autoload.php

15 lines
256 B
PHP
Raw Normal View History

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