Beispiel #1
0
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 * @author: Thomas Urban
 */
namespace de\toxa\txf;

// always disable notices
error_reporting(error_reporting() & ~E_NOTICE);
include_once dirname(__FILE__) . '/classes/txf.php';
if (!txf::hasCurrent()) {
    txf::setContextMode(txf::CTXMODE_REWRITTEN);
    txf::select(new txf());
    view::init();
}
Beispiel #2
0
define('SERVER_ROOT', dirname(__FILE__));
define('APP_PATH', SERVER_ROOT . '/app');
define('CONTROLLER_PATH', APP_PATH . '/controllers');
define('MODEL_PATH', APP_PATH . '/models');
define('PLUGIN_PATH', APP_PATH . '/plugins');
define('TEST_PATH', APP_PATH . '/tests');
define('VIEW_PATH', APP_PATH . '/views');
define('PARTIAL_PATH', VIEW_PATH . '/partials');
define('LAYOUT_PATH', VIEW_PATH . '/layouts');
define('SCRIPT_PATH', VIEW_PATH . '/scripts');
define('PUBLIC_PATH', SERVER_ROOT . '/public');
define('VENDOR_PATH', SERVER_ROOT . '/vendor');
define('SYSTEM_PATH', VENDOR_PATH . '/puffin');
define('MUSTACHE_EXT', '.html');
define('ERROR_REPORTING', true);
############################################
require VENDOR_PATH . '/autoload.php';
############################################
if (ERROR_REPORTING) {
    ini_set("display_errors", "1");
    error_reporting(E_ERROR);
}
############################################
session::start();
autoload::init();
view::init('mustache');
$app = app::init_router();
require 'app/app.php';
app::route();
echo app::render();
exit;