first commit

This commit is contained in:
2026-02-08 21:16:11 +01:00
commit e17b7026fd
8881 changed files with 1160453 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<?php
/**
* @package akeebabackup
* @copyright Copyright (c)2006-2022 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
defined('_JEXEC') || die;
use Joomla\CMS\Language\Text;
/** @var \Akeeba\Component\AkeebaBackup\Administrator\View\Alice\HtmlView $this */
?>
<div class="akeeba-panel--red">
<header class="akeeba-block-header">
<h3>
<?= Text::_('COM_AKEEBABACKUP_ALICE_ERR_ANALYZEFAILED_HEADER') ?>
</h3>
</header>
<p>
<?= Text::_('COM_AKEEBABACKUP_ALICE_ERR_ANALYZEFAILED_INFO') ?>
</p>
<h4>
<span class="akeeba-label--red--small">
<?= $this->errorException->getCode() ?>
</span>
<?= $this->errorException->getMessage() ?>
</h4>
<p>
<?= $this->errorException->getFile() ?> :: L<?= $this->errorException->getLine() ?>
</p>
<pre><?= $this->errorException->getTraceAsString() ?></pre>
</div>