Robot
68cd37f0bd
Improve the PHP environment setup validation. Add option to pass shared session via tag share.
65 lines
2.2 KiB
PHP
65 lines
2.2 KiB
PHP
<?php
|
|
/*----------------------------------------------------------------------------------| io.vdm.dev |----/
|
|
Vast Development Method
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
@package getBible.net
|
|
|
|
@created 3rd December, 2015
|
|
@author Llewellyn van der Merwe <https://getbible.net>
|
|
@git Get Bible <https://git.vdm.dev/getBible>
|
|
@github Get Bible <https://github.com/getBible>
|
|
@support Get Bible <https://git.vdm.dev/getBible/support>
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
/------------------------------------------------------------------------------------------------------*/
|
|
|
|
// No direct access to this file
|
|
defined('_JEXEC') or die;
|
|
|
|
// register additional namespace
|
|
spl_autoload_register(function ($class) {
|
|
// project-specific base directories and namespace prefix
|
|
$search = [
|
|
'libraries/vendor_getbible/TrueChristianBible.Joomla.Openai' => 'TrueChristianBible\\Joomla\\Openai',
|
|
'libraries/vendor_getbible/TrueChristianBible.Joomla.Gitea' => 'TrueChristianBible\\Joomla\\Gitea',
|
|
'libraries/vendor_getbible/TrueChristianBible.Joomla' => 'TrueChristianBible\\Joomla'
|
|
];
|
|
// Start the search and load if found
|
|
$found = false;
|
|
$found_base_dir = "";
|
|
$found_len = 0;
|
|
foreach ($search as $base_dir => $prefix)
|
|
{
|
|
// does the class use the namespace prefix?
|
|
$len = strlen($prefix);
|
|
if (strncmp($prefix, $class, $len) === 0)
|
|
{
|
|
// we have a match so load the values
|
|
$found = true;
|
|
$found_base_dir = $base_dir;
|
|
$found_len = $len;
|
|
// done here
|
|
break;
|
|
}
|
|
}
|
|
// check if we found a match
|
|
if (!$found)
|
|
{
|
|
// not found so move to the next registered autoloader
|
|
return;
|
|
}
|
|
// get the relative class name
|
|
$relative_class = substr($class, $found_len);
|
|
// replace the namespace prefix with the base directory, replace namespace
|
|
// separators with directory separators in the relative class name, append
|
|
// with .php
|
|
$file = __DIR__ . '/' . $found_base_dir . '/src' . str_replace('\\', '/', $relative_class) . '.php';
|
|
// if the file exists, require it
|
|
if (file_exists($file))
|
|
{
|
|
require $file;
|
|
}
|
|
});
|