Jeff PHP framework  0.99
Modular, extensible, OOP, MVC, lightweight php framework designed to ease the programmers in the development of web applications.
tables.php
Go to the documentation of this file.
00001 <?php
00019 define('TBL_SYS_SETTINGS', 'sys_site_settings');
00020 
00024 define('TBL_SYS_DATETIME_SETTINGS', 'sys_datetime_settings');
00025 
00029 define('TBL_SYS_GROUPS', 'sys_groups');
00030 
00034 define('TBL_SYS_PRIVILEGES', 'sys_privileges');
00035 
00039 define('TBL_USERS', 'users');
00040 
00044 define('TBL_THEMES', 'themes');
00045 
00049 define('TBL_LNG', 'languages');
00050 
00054 define('TBL_MENU', 'menu');
00055 
00056 if(is_readable(ABS_ROOT.DS.'project_tables.php')) {
00057         include(ABS_ROOT.DS.'project_tables.php');
00058 }
00059 
00060 ?>