<?php
function autoload($class_name) {
$path = H . '/share/sys/classes/' . strtolower($class_name) . '.class.php';
if (file_exists($path)) {
include_once ($path);
}
}
spl_autoload_register('autoload');
define('SHARE_SCREEN', H . '/share/sys/images/screenshots/') ;