00001 <?PHP 00002 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 00003 * This file is part of Travelsized CMS 00004 * A content management system with modules, based on wiki syntax 00005 * 00006 * Author: Dan Jensen <admin@leinir.dk> 00007 * Copyright 2003/2004 00008 * 00009 * This program is free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * The GNU General Public License is available at: http://www.gnu.org/copyleft/ 00015 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 00016 00017 // Functions used for URL creation in the system 00018 include "shared-urls.php"; 00019 00020 // Functions used to handle strings 00021 include "shared-strings.php"; 00022 00023 // Functions used to handle arrays 00024 include "shared-arrays.php"; 00025 00026 // Functions used to handle files and directories 00027 include "shared-filefunctions.php"; 00028 00029 // Functions for handling images 00030 include "shared-graphics.php"; 00031 00032 // Convenience functions for creating pretty things (for example information boxes) 00033 include "shared-pretties.php"; 00034 00035 // Error handling 00036 include "shared-errorhandler.php"; 00037 00038 // Functions for handling things used in profiles, such as the avatar images, and also loads profile options 00039 include "shared-profile.php"; 00040 00041 // Functions and classes used in site setup, especially the setupPage, optionsRow and optionsPanel classes 00042 include "shared-setup.php"; 00043 00044 // The lockable class, which enables locking a class for access 00045 include "shared-lockableclass.php"; 00046 00047 // The tabbar class 00048 include "tabbar.class.php"; 00049 00050 // The table model handler/renderer class 00051 include "shared-tablehandler.php"; 00052 00053 // The simple list editor, which lets you add, delete and edit items from an array of simple text items 00054 include "shared-simplelisteditor.php"; 00055 00056 // A tool for creating feeds (rss, atom...) 00057 include "feed-creator.php"; 00058 00059 ?>