Jeff PHP framework  0.99
Modular, extensible, OOP, MVC, lightweight php framework designed to ease the programmers in the development of web applications.
include.php
Go to the documentation of this file.
00001 <?php
00013 include(ABS_CORE.DS.'singleton.class.php');
00014 include(ABS_CORE.DS.'registry.class.php');
00015 include(ABS_PHPLIB.DS.'functions.php');
00016 include(ABS_CORE.DS.'dtime.class.php');
00017 include(ABS_CORE.DS.'authentication.class.php');
00018 include(ABS_CORE.DS.'cache.php');
00019 include(ABS_CORE.DS.'access.class.php');
00020 include(ABS_PHPLIB.DS.'varFilters.php');
00021 include(ABS_CORE.DS.'error.class.php');
00022 include(ABS_MVC.DS.'controller.class.php');
00023 include(ABS_CORE.DS.'router.class.php');
00024 include(ABS_CORE.DS.'document.class.php');
00025 include(ABS_CORE.DS.'adminTable.class.php');
00026 include(ABS_CORE.DS.'export.class.php');
00027 include(ABS_CORE.DS.'search.class.php');
00028 include(ABS_CORE.DS.'form.class.php');
00029 include(ABS_CORE.DS.'image.class.php');
00030 include(ABS_TEMPLATE.DS.'template.class.php');
00031 include(ABS_TEMPLATE.DS.'template.factory.php');
00032 include(ABS_CORE.DS.'pagination.class.php');
00033 include(ABS_THEME.DS.'theme.class.php');
00034 include(ABS_DB.DS.'db.factory.php');
00035 include(ABS_DB.DS.'mysql.php');
00036 
00043 function __autoload($class) {
00044 
00045         if(is_file(ABS_MDL.DS.$class.DS.$class.'.php')) {
00046                 include_once(ABS_MDL.DS.$class.DS.$class.'.php');
00047         }
00048                 
00049         if (!class_exists($class, false)) {
00050                 Error::syserrorMessage('include.php', 'autoload', sprintf(__("CantChargeModuleError"), $class, ABS_MDL.DS.$class.DS.$class.'.php'), __LINE__);
00051         }
00052 }
00053 
00054 ?>