Welcome to the LifeType API!

This is the starting point of the LifeType API. The API provides an a group of classes that go from database abstraction and data representation to templating and data validation.

This documentation is not an in-depth introduction to the LifeType API but instead it should only be used as a reference when developing plugins or customizing LifeType. Additionally, the most recent version of this documentation can be found at http://www.lifetype.net/api */ /** * This file provides all the code needed for bootstraping an application * based on the LT framework such as setting error handles, loading base * classes, etc */ // load our custom method to speed up the inclusion of files include( PLOG_CLASS_PATH."class/object/loader.class.php" ); // replacement code for the UTF-8 libraries in case they are not installed lt_include( PLOG_CLASS_PATH."class/data/utf8/utf8.php" ); // register our autoloader via SPL (so that we can have more than one) spl_autoload_register( Array( "LTClassLoader", "load" )); ?>