{
// Verify the library path exists.
if (!is_dir($path)) {
$path = (str_replace(JPATH_ROOT, '', $path) == $path) ? basename($path) : str_replace(JPATH_ROOT, '', $path);
throw new RuntimeException('Library path ' . $path . ' cannot be found.', 500);
}
// Trim leading and trailing backslashes from namespace, allowing "\Parent\Child", "Parent\Child\" and "\Parent\Child\" to be treated the same way.
$namespace = trim($namespace, '\\');
defined('_JEXEC') or die('Restricted access');
JLoader::registerNamespace('hcclib', JPATH_LIBRARIES . '/hcclib');
use hcclib\algemeen\debug;
use hcclib\database\haal;
use Joomla\CMS\Factory;
// Store the file path
$this->_file = $directory . '/' . $filename;
// Get the file content
ob_start();
require $directory . '/' . $filename;
$contents = ob_get_clean();
}
return $contents;
}
$this->baseurl = Uri::base(true);
$this->params = $params['params'] ?? new Registry();
$this->template = $template;
// Load
$this->_template = $this->_loadTemplate($baseDir, $file);
return $this;
}
/**
*
* @since 1.7.0
*/
public function parse($params = [])
{
return $this->_fetchTemplate($params)->_parseTemplate();
}
/**
* Outputs the template to the browser.
*
public function render($caching = false, $params = [])
{
$this->_caching = $caching;
if (empty($this->_template)) {
$this->parse($params);
}
if (\array_key_exists('csp_nonce', $params) && $params['csp_nonce'] !== null) {
$this->cspNonce = $params['csp_nonce'];
}
$this->debug = $params['debug'] ?? false;
$this->error = $this->_error;
$params['file'] = 'error.php';
return parent::render($cache, $params);
}
/**
* Render the backtrace
*
ob_end_clean();
}
$this->getDocument()->setTitle(Text::_('Error') . ': ' . $error->getCode());
return $this->getDocument()->render(
false,
[
'template' => $template->template,
'directory' => JPATH_THEMES,
'debug' => JDEBUG,
'subject' => $app,
'document' => $renderer->getDocument(),
])
);
$data = $renderer->render($error);
// If nothing was rendered, just use the message from the Exception
if (empty($data)) {
$data = $error->getMessage();
}
* @since 3.10.0
*/
public static function handleException(\Throwable $error)
{
static::logException($error);
static::render($error);
}
/**
* Render the error page based on an exception.
*
);
// Trigger the onError event.
$this->dispatchEvent('onError', $event);
ExceptionHandler::handleException($event->getError());
}
// Trigger the onBeforeRespond event.
$this->dispatchEvent(
'onBeforeRespond',
// Set the application as global app
\Joomla\CMS\Factory::$application = $app;
// Execute the application.
$app->execute();
* define() is used rather than "const" to not error for PHP 5.2 and lower
*/
define('_JEXEC', 1);
// Run the application - All executable code should be triggered through this file
require_once dirname(__FILE__) . '/includes/app.php';
use Joomla\CMS\Factory;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Language\Text;
debug::debugopties('hccfenix', 'tpl', $debug, $debugfile, $querydebug, $arraydebug, $objectdebug, $xmldebug);
$liveurl = algemeen::liveurl();
$livekaal = algemeen::liveurl(1);
$url = $_SERVER['REQUEST_URI'];
$actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
// Store the file path
$this->_file = $directory . '/' . $filename;
// Get the file content
ob_start();
require $directory . '/' . $filename;
$contents = ob_get_clean();
}
return $contents;
}
$this->baseurl = Uri::base(true);
$this->params = $params['params'] ?? new Registry();
$this->template = $template;
// Load
$this->_template = $this->_loadTemplate($baseDir, $file);
return $this;
}
/**
*
* @since 1.7.0
*/
public function parse($params = [])
{
return $this->_fetchTemplate($params)->_parseTemplate();
}
/**
* Outputs the template to the browser.
*
// Fall back to constants.
$this->docOptions['directory'] = \defined('JPATH_THEMES') ? JPATH_THEMES : (\defined('JPATH_BASE') ? JPATH_BASE : __DIR__) . '/themes';
}
// Parse the document.
$this->document->parse($this->docOptions);
// Trigger the onBeforeRender event.
PluginHelper::importPlugin('system', null, true, $this->getDispatcher());
$this->dispatchEvent(
'onBeforeRender',
$this->set('themeInherits', $template->parent);
break;
}
parent::render();
}
/**
* Route the application.
*
$this->doExecute();
// If we have an application document object, render it.
if ($this->document instanceof \Joomla\CMS\Document\Document) {
// Render the application output.
$this->render();
}
// If gzip compression is enabled in configuration and the server is compliant, compress the output.
if ($this->get('gzip') && !\ini_get('zlib.output_compression') && \ini_get('output_handler') !== 'ob_gzhandler') {
$this->compress();
// Set the application as global app
\Joomla\CMS\Factory::$application = $app;
// Execute the application.
$app->execute();
* define() is used rather than "const" to not error for PHP 5.2 and lower
*/
define('_JEXEC', 1);
// Run the application - All executable code should be triggered through this file
require_once dirname(__FILE__) . '/includes/app.php';
[2/2]
RuntimeException
|
---|
RuntimeException: Library path /libraries/hcclib cannot be found. at /disk/site/hcc.nl/interessegroep/opensource/www/libraries/loader.php:407 at JLoader::registerNamespace() (/disk/site/hcc.nl/interessegroep/opensource/www/templates/hccfenix/error.php:13) at require('/disk/site/hcc.nl/interessegroep/opensource/www/templates/hccfenix/error.php') (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Document/HtmlDocument.php:731) at Joomla\CMS\Document\HtmlDocument->_loadTemplate() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Document/HtmlDocument.php:785) at Joomla\CMS\Document\HtmlDocument->_fetchTemplate() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Document/HtmlDocument.php:622) at Joomla\CMS\Document\HtmlDocument->parse() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Document/HtmlDocument.php:640) at Joomla\CMS\Document\HtmlDocument->render() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Document/ErrorDocument.php:139) at Joomla\CMS\Document\ErrorDocument->render() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Error/Renderer/HtmlRenderer.php:70) at Joomla\CMS\Error\Renderer\HtmlRenderer->render() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Exception/ExceptionHandler.php:136) at Joomla\CMS\Exception\ExceptionHandler::render() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Exception/ExceptionHandler.php:73) at Joomla\CMS\Exception\ExceptionHandler::handleException() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Application/CMSApplication.php:336) at Joomla\CMS\Application\CMSApplication->execute() (/disk/site/hcc.nl/interessegroep/opensource/www/includes/app.php:58) at require_once('/disk/site/hcc.nl/interessegroep/opensource/www/includes/app.php') (/disk/site/hcc.nl/interessegroep/opensource/www/index.php:32) |
[1/2]
Error
|
---|
Error: Class "hcclib\algemeen\debug" not found at /disk/site/hcc.nl/interessegroep/opensource/www/templates/hccfenix/index.php:20 at require() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Document/HtmlDocument.php:731) at Joomla\CMS\Document\HtmlDocument->_loadTemplate() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Document/HtmlDocument.php:785) at Joomla\CMS\Document\HtmlDocument->_fetchTemplate() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Document/HtmlDocument.php:622) at Joomla\CMS\Document\HtmlDocument->parse() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Application/CMSApplication.php:1057) at Joomla\CMS\Application\CMSApplication->render() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Application/SiteApplication.php:732) at Joomla\CMS\Application\SiteApplication->render() (/disk/site/hcc.nl/interessegroep/opensource/www/libraries/src/Application/CMSApplication.php:311) at Joomla\CMS\Application\CMSApplication->execute() (/disk/site/hcc.nl/interessegroep/opensource/www/includes/app.php:58) at require_once('/disk/site/hcc.nl/interessegroep/opensource/www/includes/app.php') (/disk/site/hcc.nl/interessegroep/opensource/www/index.php:32) |