Arquivos
wMind/mind3rd/API/utils/header.php
T
Felipe N. Moura 5057551be7 Added friendly message for extra parameter error
Added redirect to setup page when accessing the index before installing it
2012-03-28 18:56:48 -03:00

85 linhas
2.2 KiB
PHP
Arquivo Executável

<?php
/**
* This file is part of TheWebMind 3rd generation.
*
* @author Felipe Nascimento de Moura <felipenmoura@gmail.com>
* @license licenses/mind3rd.license
*/
session_start();
define('_CONSOLE_LINE_LENGTH_', 80);
require(_MINDSRC_.'/mind3rd/API/classes/Mind.php');
if(Mind::isInstalled())
{
Mind::autoloadRegisterPath(Array(
_MINDSRC_.'/mind3rd/API/external/',
_MINDSRC_.'/mind3rd/API/interfaces/',
_MINDSRC_.'/mind3rd/API/programs/',
_MINDSRC_.'/mind3rd/API/L10N/',
_MINDSRC_.'/mind3rd/API/classes/',
_MINDSRC_.'/mind3rd/API/cortex/Lexer/',
_MINDSRC_.'/mind3rd/API/cortex/tokenizer/',
_MINDSRC_.'/mind3rd/API/cortex/canonic/',
_MINDSRC_.'/mind3rd/API/cortex/syntaxer/',
_MINDSRC_.'/mind3rd/API/cortex/analyst/',
_MINDSRC_.'/mind3rd/API/languages/',
_MINDSRC_.'/mind3rd/API/DBMS/',
_MINDSRC_.'/mind3rd/API/Lobe/',
_MINDSRC_.'/mind3rd/API/'
));
function __autoload($what)
{
GLOBAL $_MIND;
$what= preg_replace("/[ '\"\.\/]/", '', $what);
$what= str_replace('\\', '/', $what);
$what= str_replace('.', '', $what);
if(file_exists(_MINDSRC_.'/mind3rd/API/programs/'.$what.'.php'))
{
include(_MINDSRC_.'/mind3rd/API/programs/'.$what.'.php');
return true;
}
// checking if the class is not a facad from the API
if(strpos($what, 'API/')!==false)
{
$what= explode('/', $what);
$classFile= array_pop($what);
$what= str_replace('/', '\\', $what);
$file= _MINDSRC_.'/mind3rd/API/facade/'.$classFile.".php";
if(file_exists($file))
{
include($file);
return true;
}
}
// checking if the class is inside any of the autoload paths
$dirs= Mind::$autoloadPaths;
for($i=0; $i<sizeof($dirs); $i++)
{
if(file_exists($dirs[$i].$what.'.php'))
{
require_once($dirs[$i].$what.'.php');
return true;
}
}
// let's check if it is a language
$langPath= _MINDSRC_.'/mind3rd/API/languages/'.
$_MIND->defaults['default_human_languageName'].'/'.
$what.'.php';
if(file_exists($langPath))
{
require_once($langPath);
return true;
}
// ok, if it's reached here...it didn't go well!
echo " [ERROR] Class not found: ".$what."\n";
return false;
}
}