Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/ControlPanel.zip
Назад
PK q�!]f��� � backup8_uninstall.blade.phpnu &1i� <?php /** * @package akeebabackup * @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ /** @var $this \Akeeba\Backup\Admin\View\ControlPanel\Html */ // Protect from unauthorized access defined('_JEXEC') || die(); $eid = \Akeeba\Backup\Admin\Helper\Upgrade::getAkeebaBackup8ExtensionId(); $url = sprintf('index.php?option=com_installer&view=manage&filter[search]=id%%3A%d&filter[status]=&filter[client_id]=&filter[type]=&filter[folder]=&filter[core]=', $eid) ?> <h1>🚨 Please complete your migration to Akeeba Backup 9 🚨</h1> <p style="font-size: 1.5rem; margin: 1rem 0 0"> Please click on Components, Akeeba Backup for Joomla!™, Control Panel to open <a href="index.php?option=com_akeebabackup">Akeeba Backup 9</a>'s interface. </p> <p style="font-size: 1.5rem; margin: 1rem 0 0"> Follow the instructions shown in Akeeba Backup 9 to migrate your settings and backups from Akeeba Backup 8 to Akeeba Backup 9. </p> <p style="font-size: 1.5rem; margin: 1rem 0 0"> After you are done migrating please <a href="<?= $url ?>">uninstall Akeeba Backup 8</a>. </p> PK q�!]�;z6� � profile.blade.phpnu &1i� <?php /** * @package akeebabackup * @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ /** @var $this \Akeeba\Backup\Admin\View\ControlPanel\Html */ // Protect from unauthorized access defined('_JEXEC') || die(); /** * Call this template with: * [ * 'returnURL' => 'index.php?......' * ] * to set up a custom return URL */ ?> @jhtml('formbehavior.chosen') <div class="akeeba-panel"> <form action="index.php" method="post" name="switchActiveProfileForm" id="switchActiveProfileForm" class="akeeba-form--inline"> <input type="hidden" name="option" value="com_akeeba" /> <input type="hidden" name="view" value="ControlPanel" /> <input type="hidden" name="task" value="SwitchProfile" /> @if(isset($returnURL)) <input type="hidden" name="returnurl" value="{{ $returnURL }}" /> @endif <input type="hidden" name="@token(true)" value="1" /> <div class="akeeba-form-group"> <label> @lang('COM_AKEEBA_CPANEL_PROFILE_TITLE'): #{{ $this->profileId }} </label> {{-- Joomla 3.x: Chosen does not work with attached event handlers, only with inline event scripts (e.g. onchange) --}} @jhtml('select.genericlist', $this->profileList, 'profileid', ['list.select' => $this->profileId, 'id' => 'comAkeebaControlPanelProfileSwitch', 'list.attr' => ['class' => 'advancedSelect', 'onchange' => 'document.forms.switchActiveProfileForm.submit();']]) </div> <div class="akeeba-form-group--actions"> <button class="akeeba-btn akeeba-hidden-phone" type="submit"> <span class="akion-forward"></span> @lang('COM_AKEEBA_CPANEL_PROFILE_BUTTON') </button> </div> </form> </div> PK q�!]����o o default.xmlnu &1i� <?xml version="1.0" encoding="utf-8"?> <!--~ ~ @package akeebabackup ~ @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd ~ @license GNU General Public License version 3, or later --> <metadata> <layout title="COM_AKEEBA_VIEW_CPANEL_TITLE"> <message> <![CDATA[COM_AKEEBA_VIEW_CPANEL_DESC]]> </message> </layout> </metadata> PK q�!]�$>$ backup9_install.blade.phpnu &1i� <?php /** * @package akeebabackup * @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ /** @var $this \Akeeba\Backup\Admin\View\ControlPanel\Html */ // Protect from unauthorized access defined('_JEXEC') || die(); if (version_compare(JVERSION, '4.1.0', 'ge')) { $css = <<< CSS #akeebaBackup8Wrapper { display: none; } CSS; $js = <<< JS function akeebaBackup8RegisterWrapperReveal(e) { var elDiv = document.getElementById('akeebaBackup8Wrapper'); var elUpgradeWrapper = document.getElementById('akeebaBackup8UpgradeWrapper'); var elToggleWrapper = document.getElementById('akeebaBackup8WrapperToggleWrapper'); var elUnsafeWrapper = document.getElementById('akeebaBackup8UnsafeWrapper'); if (elDiv) { elDiv.style.display = 'block'; } if (elUnsafeWrapper) { elUnsafeWrapper.style.display = 'block'; } if (elUpgradeWrapper) { elUpgradeWrapper.style.display = 'none'; } if (elToggleWrapper) { elToggleWrapper.style.display = 'none'; } } document.addEventListener("DOMContentLoaded", function () { var elLink = document.getElementById('akeebaBackup8WrapperToggle'); if (!elLink) return; elLink.addEventListener('click', akeebaBackup8RegisterWrapperReveal); }, false); var akeebaBackup8RegisterWrapperRevealTimer = setInterval(function () { if(document.readyState !== "complete") return; clearInterval(akeebaBackup8RegisterWrapperRevealTimer); }, 300); JS; $this->addCssInline($css); $this->addJavascriptInline($js); } ?> <div class="akeeba-block--warning--large" id="akeebaBackup8UpgradeWrapper"> <h1>🚨 🚨 🚨 Please upgrade to Akeeeba Backup 9 🚨 🚨 🚨</h1> @if (version_compare(JVERSION, '4.1.0', 'ge')) <p style="font-size: 1.5rem; margin: 1rem 0 0"> You are currently using Akeeba Backup 8. This version is only meant to allow you to upgrade from Joomla 3 to Joomla 4 without losing your backup archives and settings. <strong>It is not supported for taking on restoring backups with Joomla {{ JVERSION }}</strong>. </p> @else <p style="font-size: 1.5rem; margin: 1rem 0 0"> You are currently using Akeeba Backup 8. This version was only made minimally compatible with Joomla 4 to allow you to upgrade from Joomla 3 to Joomla 4 without losing your backup archives and settings. We will not provide support for Akeeba Backup 8 running on Joomla 4.0 and later. </p> @endif <p style="font-size: 1.5rem; margin: 1rem 0 0"> You need to <a href="https://www.akeeba.com/download.html" target="_blank">download</a> and install Akeeba Backup 9, our Joomla 4 native version of Akeeba Backup. It is fully supported for use on Joomla 4. </p> <p style="font-size: 1.5rem; margin: 1rem 0 0"> After installing Akeeba Backup 9 please click on Components, Akeeba Backup <small>for Joomla!™</small>, Control Panel from Joomla's sidebar and follow the instructions on your screen to migrate your settings and your backups from Akeeba Backup 8. </p> <p> <a href="https://www.akeeba.com/download.html" class="akeeba-btn--green--big--block" style="font-size: 1.5rem; margin: 2rem 0"> <span class="akion akion-ios-download" aria-hidden="true"></span> Download Akeeba Backup 9 now </a> </p> </div> @if (version_compare(JVERSION, '4.1.0', 'ge')) <p class="small" id="akeebaBackup8WrapperToggleWrapper"> <a href="#" id="akeebaBackup8WrapperToggle"> I would like to use Akeeba Backup 8 <em>at my own risk</em> </a> <br/> <span style="font-size: smaller"> By clicking this link you agree that you are doing something we explicitly told you NOT to do, you are fully responsible for your actions and their consequences, the interface or functionality might be broken, you might lose data or damage your site, and that you are not eligible for any support whatsoever. </span> </p> <div class="akeeba-block--failure--large" id="akeebaBackup8UnsafeWrapper" style="display: none"> <h3>You are using Akeeba Backup in an UNSUPPORTED environment AT YOUR OWN RISK</h3> <p> Akeeba Backup 8 is NOT supported for use on Joomla! <?= JVERSION ?>. </p> <p> You have chosen to use it anyway, AT YOUR OWN RISK. By doing this you understand that: </p> <ul> <li>you are doing something we explicitly told you <u>NOT</u> to do.</li> <li>you are fully responsible for your actions <strong>and</strong> their consequences.</li> <li>the interface or the functionality of the component may be not work fully, correctly or at all.</li> <li>you might lose data or otherwise damage your site.</li> <li>you are not eligible for <em>ANY SUPPORT WHATSOEVER</em>.</li> </ul> <p> We <strong>VERY STRONGLY</strong> advise you to upgrade to the latest version of Akeeba Backup 9 or later. </p> <p> Consider yourself warned. </p> </div> @endif PK q�!]��) ) icons_basic.blade.phpnu &1i� <?php /** * @package akeebabackup * @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ /** @var $this \Akeeba\Backup\Admin\View\ControlPanel\Html */ // Protect from unauthorized access defined('_JEXEC') || die(); ?> <section class="akeeba-panel--info"> <header class="akeeba-block-header"> <h3>@lang('COM_AKEEBA_CPANEL_HEADER_BASICOPS')</h3> </header> <div class="akeeba-grid"> @if($this->permissions['backup']) <a class="akeeba-action--green" href="index.php?option=com_akeeba&view=Backup"> <span class="akion-play"></span> @lang('COM_AKEEBA_BACKUP') </a> @endif @if($this->permissions['download'] && AKEEBA_PRO) <a class="akeeba-action--green" href="index.php?option=com_akeeba&view=Transfer"> <span class="akion-android-open"></span> @lang('COM_AKEEBA_TRANSFER') </a> @endif <a class="akeeba-action--teal" href="index.php?option=com_akeeba&view=Manage"> <span class="akion-ios-list"></span> @lang('COM_AKEEBA_BUADMIN') </a> @if($this->permissions['configure']) <a class="akeeba-action--teal" href="index.php?option=com_akeeba&view=Configuration"> <span class="akion-ios-gear"></span> @lang('COM_AKEEBA_CONFIG') </a> @endif @if($this->permissions['configure']) <a class="akeeba-action--teal" href="index.php?option=com_akeeba&view=Profiles"> <span class="akion-person-stalker"></span> @lang('COM_AKEEBA_PROFILES') </a> @endif </div> </section> PK q�!]�{a�= = sidebar_status.blade.phpnu &1i� <?php /** * @package akeebabackup * @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ /** @var $this \Akeeba\Backup\Admin\View\ControlPanel\Html */ // Protect from unauthorized access defined('_JEXEC') || die(); ?> <div class="akeeba-panel"> <header class="akeeba-block-header"> <h3>@lang('COM_AKEEBA_CPANEL_LABEL_STATUSSUMMARY')</h3> </header> <div> {{-- Backup status summary --}} {{ $this->statusCell }} {{-- Warnings --}} @if($this->countWarnings) <div> {{ $this->detailsCell }} </div> <hr /> @endif {{-- Version --}} <p class="ak_version"> @lang('COM_AKEEBA') {{ AKEEBA_PRO ? 'Professional ' : 'Core'; }} {{ AKEEBA_VERSION }} ({{ AKEEBA_DATE }}) </p> {{-- Changelog --}} <a href="#" id="btnchangelog" class="akeeba-btn--primary">CHANGELOG</a> <div id="akeeba-changelog" tabindex="-1" role="dialog" aria-hidden="true" style="display:none;"> <div class="akeeba-renderer-fef"> <div class="akeeba-panel--info"> <header class="akeeba-block-header"> <h3> @lang('CHANGELOG') </h3> </header> <div id="DialogBody"> {{ $this->formattedChangelog }} </div> </div> </div> </div> {{-- Donation CTA --}} @if( ! (AKEEBA_PRO)) <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KDVQPB4EREBPY&source=url" class="akeeba-btn-green"> Donate via PayPal </a> @endif {{-- Pro upsell --}} @if(!AKEEBA_PRO && (time() - $this->lastUpsellDismiss < 1296000)) <p style="margin: 0.5em 0"> <a href="https://www.akeeba.com/landing/akeeba-backup.html" class="akeeba-btn--ghost--small"> <span class="aklogo-backup-j"></span> @lang('COM_AKEEBA_CONTROLPANEL_BTN_LEARNMORE') </a> </p> @endif </div> </div> PK q�!]1A�3 3 icons_troubleshooting.blade.phpnu &1i� <?php /** * @package akeebabackup * @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ /** @var $this \Akeeba\Backup\Admin\View\ControlPanel\Html */ // Protect from unauthorized access defined('_JEXEC') || die(); ?> <section class="akeeba-panel--info"> <header class="akeeba-block-header"> <h3>@lang('COM_AKEEBA_CPANEL_HEADER_TROUBLESHOOTING')</h3> </header> <div class="akeeba-grid"> @if($this->permissions['backup']) <a class="akeeba-action--teal" href="index.php?option=com_akeeba&view=Log"> <span class="akion-ios-search-strong"></span> @lang('COM_AKEEBA_LOG') </a> @endif @if(AKEEBA_PRO && $this->permissions['configure']) <a class="akeeba-action--teal" href="index.php?option=com_akeeba&view=Alice"> <span class="akion-medkit"></span> @lang('COM_AKEEBA_ALICE') </a> @endif </div> </section> PK q�!]����6&