wrote this file. * As long as you retain this notice you can do whatever you want with * this stuff. If we meet some day, and you think this stuff is worth it, * you can buy me a beer in return. * * @author Sven Strittmatter * @copyright Copyright (c) 2010, Sven Strittmatter. * @version 0.2.0 * @license http://www.weltraumschaf.de/the-beer-ware-license.txt */ // set up enviroment: $kapitRoot = dirname(dirname(__FILE__)); $kapitLibrary = $kapitRoot . '/lib'; set_include_path(implode(PATH_SEPARATOR, array( $kapitLibrary, get_include_path() ))); unset($kapitLibrary); // laod app config /** * @see Api_Kwick_Config */ require_once 'Api/Kwick/Config.php'; $configArray = include($kapitRoot . '/configs/app.php'); $config = new Api_Kwick_Config($configArray); unset($kapitRoot, $configArray);