2017-08-20 17:52:35 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
2022-07-09 15:45:08 +00:00
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
2023-10-18 07:26:30 +00:00
|
|
|
// add the autoloader for the composer classes
|
|
|
|
$composer_autoloader = JPATH_LIBRARIES . '/phpseclib3/vendor/autoload.php';
|
|
|
|
if (file_exists($composer_autoloader))
|
|
|
|
{
|
|
|
|
require_once $composer_autoloader;
|
|
|
|
}
|
|
|
|
|
|
|
|
// register this component namespace
|
|
|
|
spl_autoload_register(function ($class) {
|
|
|
|
// project-specific base directories and namespace prefix
|
|
|
|
$search = [
|
|
|
|
'libraries/jcb_powers/VDM.Joomla.Openai' => 'VDM\\Joomla\\Openai',
|
|
|
|
'libraries/jcb_powers/VDM.Joomla.Gitea' => 'VDM\\Joomla\\Gitea',
|
|
|
|
'libraries/jcb_powers/VDM.Joomla.FOF' => 'VDM\\Joomla\\FOF',
|
|
|
|
'libraries/jcb_powers/VDM.Joomla' => 'VDM\\Joomla',
|
|
|
|
'libraries/jcb_powers/VDM.Minify' => 'VDM\\Minify',
|
|
|
|
'libraries/jcb_powers/VDM.Psr' => 'VDM\\Psr'
|
|
|
|
];
|
|
|
|
// 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 = JPATH_ROOT . '/' . $found_base_dir . '/src' . str_replace('\\', '/', $relative_class) . '.php';
|
|
|
|
// if the file exists, require it
|
|
|
|
if (file_exists($file))
|
|
|
|
{
|
|
|
|
require $file;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-12-21 14:44:50 +00:00
|
|
|
|
2021-03-05 03:08:47 +00:00
|
|
|
|
|
|
|
// Set the component css/js
|
|
|
|
$document = JFactory::getDocument();
|
|
|
|
$document->addStyleSheet('components/com_componentbuilder/assets/css/site.css');
|
|
|
|
$document->addScript('components/com_componentbuilder/assets/js/site.js');
|
|
|
|
|
|
|
|
// Require helper files
|
2020-12-26 20:28:36 +00:00
|
|
|
JLoader::register('ComponentbuilderHelper', __DIR__ . '/helpers/componentbuilder.php');
|
2021-03-05 03:08:47 +00:00
|
|
|
JLoader::register('ComponentbuilderEmail', JPATH_COMPONENT_ADMINISTRATOR . '/helpers/componentbuilderemail.php');
|
2021-12-21 14:44:50 +00:00
|
|
|
JLoader::register('ComponentbuilderHelperRoute', __DIR__ . '/helpers/route.php');
|
2018-04-23 12:47:19 +00:00
|
|
|
|
2021-12-21 14:44:50 +00:00
|
|
|
// Trigger the Global Site Event
|
2021-03-05 03:08:47 +00:00
|
|
|
ComponentbuilderHelper::globalEvent($document);
|
|
|
|
|
|
|
|
// Get an instance of the controller prefixed by Componentbuilder
|
|
|
|
$controller = JControllerLegacy::getInstance('Componentbuilder');
|
|
|
|
|
|
|
|
// Perform the request task
|
|
|
|
$controller->execute(JFactory::getApplication()->input->get('task'));
|
|
|
|
|
|
|
|
// Redirect if set by the controller
|
|
|
|
$controller->redirect();
|