* @copyright (cc) creative commons - attribution-shareAlike 3.0 unported * @version 1.0 * @see /qoob/core/open_qoob.php */ //_________________________________________________________________________________ // framework initialization // --- version define("QOOB_VERSION", "1.0"); //---lazyness define("SLASH", DIRECTORY_SEPARATOR); // --- server define("QOOB_ROOT", dirname(__FILE__)); define("APP_PATH", QOOB_ROOT.SLASH."app"); define("QOOB_PATH", QOOB_ROOT.SLASH."qoob"); // --- default controller + action define("DEFAULT_CONTROLLER", "pages"); define("DEFAULT_ACTION", "index"); date_default_timezone_set("America/New_York"); //_________________________________________________________________________________ // framework execution require_once QOOB_PATH.SLASH."core".SLASH."open_qoob.php"; new open_qoob(); ?>