Current File : /home/pacjaorg/.trash/templates/tz_meetup/error.php |
<?php
/**
* @package Astroid Framework
* @author JoomDev https://www.joomdev.com
* @copyright Copyright (C) 2009 - 2020 JoomDev.
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
*/
defined('_JEXEC') or die;
defined('_ASTROID') or die('Please install and activate <a href="https://www.astroidframework.com/" target="_blank">Astroid Framework</a> in order to use this template.');
require_once "helper.php"; // Template's Helper
$document = Astroid\Framework::getDocument(); // Astroid Document
$params = Astroid\Framework::getTemplate()->getParams(); // Astroid Params
Astroid\Helper\Head::meta(); // site meta
Astroid\Helper\Head::scripts(); // site scripts
Astroid\Helper\Head::favicon(); // site favicon
Astroid\Component\Utility::error(); // error page styling
Astroid\Component\Utility::typography();
/** @var JDocumentError $this */
$errorContent = $params->get('error_404_content', '');
$errorButton = $params->get('error_call_to_action', '');
$bodyAttrs = [];
if ($params->get('background_setting_404') == 'video' && !empty($params->get('background_video_404', ''))) {
$document->addScript('vendor/astroid/js/videobg.js', 'body');
$bodyAttrs[] = 'data-jd-video-bg="' . JURI::root() . Astroid\Helper\Media::getPath() . '/' . $params->get('background_video_404', '') . '"';
}
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
<meta charset="utf-8" />
<title><?php echo $this->title; ?> <?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?></title>
<?php
echo $document->renderMeta();
echo Astroid\Helper\Head::styles();
echo $document->renderLinks();
echo $document->getStylesheets();
?>
</head>
<body class="error-page" <?php echo implode(' ', $bodyAttrs); ?>>
<div class="container">
<div class="row">
<div class="col-12 text-center align-self-center">
<?php
if (!empty($errorContent)) {
echo str_replace('{errormessage}', htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'), str_replace('{errorcode}', $this->error->getCode(), $document->loadModule($errorContent)));
} else {
?>
<div class="py-5">
<h2 class="display-1"><?php echo $this->error->getCode(); ?></h2>
<h5 class="display-4"><?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?></h5>
</div>
<?php
}
?>
<a class="btn btn-backtohome" href="<?php echo JURI::root(); ?>" role="button"><?php echo $errorButton; ?></a>
</div>
</div>
<?php if ($this->debug) : ?>
<div class="row bg-white">
<div class="col py-3 text-center">
<code class="p-3">
ERROR <?php echo $this->error->getCode(); ?> - <?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?> in <?php echo htmlspecialchars($this->error->getFile(), ENT_QUOTES, 'UTF-8'); ?>:<?php echo $this->error->getLine(); ?>
</code>
</div>
</div>
<?php endif; ?>
<?php if ($this->debug) : ?>
<div class="row">
<div class="col mb-5 bg-white">
<?php echo $this->renderBacktrace(); ?>
<?php // Check if there are more Exceptions and render their data as well
?>
<?php if ($this->error->getPrevious()) : ?>
<?php $loop = true; ?>
<?php // Reference $this->_error here and in the loop as setError() assigns errors to this property and we need this for the backtrace to work correctly
?>
<?php // Make the first assignment to setError() outside the loop so the loop does not skip Exceptions
?>
<?php $this->setError($this->_error->getPrevious()); ?>
<?php while ($loop === true) : ?>
<p><strong><?php echo JText::_('JERROR_LAYOUT_PREVIOUS_ERROR'); ?></strong></p>
<p>
<?php echo htmlspecialchars($this->_error->getMessage(), ENT_QUOTES, 'UTF-8'); ?>
<br /><?php echo htmlspecialchars($this->_error->getFile(), ENT_QUOTES, 'UTF-8'); ?>:<?php echo $this->_error->getLine(); ?>
</p>
<?php echo $this->renderBacktrace(); ?>
<?php $loop = $this->setError($this->_error->getPrevious()); ?>
<?php endwhile; ?>
<?php // Reset the main error object to the base error
?>
<?php $this->setError($this->error); ?>
<?php endif; ?>
</div>
</div>
<?php endif; ?>
</div>
<?php
echo $document->getScripts('body');
echo $document->getCustomTags('body');
?>
</body>
</html>