<?php
/**
* @version $Id: inner.php 471 2011-07-02 15:50:39Z datahell $
* @package Elxis
* @copyright Copyright (c) 2006-2012 Elxis CMS (http://www.elxis.org). All rights reserved.
* @license Elxis Public License ( http://www.elxis.org/elxis-public-license.html )
* @author Elxis Team ( http://www.elxis.org )
* @description Elxis CMS is free software. Read the license for copyright notices and details
*/
define('_ELXIS_', 1);
define('ELXIS_ADMIN', 1);
define('ELXIS_APATH', str_replace(DIRECTORY_SEPARATOR, '/', dirname(__FILE__)));
define('ELXIS_PATH', str_replace(DIRECTORY_SEPARATOR, '/', dirname(ELXIS_APATH)));
define('ELXIS_SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
define('ELXIS_INNER', 1);
$parts = explode('/', ELXIS_APATH);
$f = count($parts) - 1;
define('ELXIS_ADIR', $parts[$f]);
unset($parts, $f);
require(ELXIS_PATH.'/includes/loader.php');
?>