Server IP : 195.201.23.43 / Your IP : 18.224.21.144 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/cwd/administrator/components/com_akeeba/View/Restore/tmpl/ |
Upload File : |
<?php /** * @package akeebabackup * @copyright Copyright (c)2006-2019 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ // Protect from unauthorized access defined('_JEXEC') or die(); $this->loadHelper('escape'); $escapedPassword = addslashes($this->password); $escapedJuriBase = addslashes(JUri::base()); $js = <<< JS ;// This comment is intentionally put here to prevent badly written plugins from causing a Javascript error // due to missing trailing semicolon and/or newline in their code. akeeba.Restore.password = '$escapedPassword'; akeeba.Restore.ajaxURL = '{$escapedJuriBase}/components/com_akeeba/restore.php'; akeeba.Restore.mainURL = '{$escapedJuriBase}/index.php'; akeeba.System.documentReady(function(){ akeeba.Restore.pingRestoration(); akeeba.System.addEventListener(document.getElementById('restoration-runinstaller'), 'click', akeeba.Restore.runInstaller); akeeba.System.addEventListener(document.getElementById('restoration-finalize'), 'click', akeeba.Restore.finalize); }); JS; $this->getContainer()->template->addJSInline($js); ?> <div class="akeeba-block--info"> <p> <?php echo \JText::_('COM_AKEEBA_RESTORE_LABEL_DONOTCLOSE'); ?> </p> </div> <div id="restoration-progress"> <h4><?php echo \JText::_('COM_AKEEBA_RESTORE_LABEL_INPROGRESS'); ?></h4> <table class="akeeba-table--striped"> <tr> <td width="25%"> <?php echo \JText::_('COM_AKEEBA_RESTORE_LABEL_BYTESREAD'); ?> </td> <td> <span id="extbytesin"></span> </td> </tr> <tr> <td width="25%"> <?php echo \JText::_('COM_AKEEBA_RESTORE_LABEL_BYTESEXTRACTED'); ?> </td> <td> <span id="extbytesout"></span> </td> </tr> <tr> <td width="25%"> <?php echo \JText::_('COM_AKEEBA_RESTORE_LABEL_FILESEXTRACTED'); ?> </td> <td> <span id="extfiles"></span> </td> </tr> </table> <div id="response-timer"> <div class="color-overlay"></div> <div class="text"></div> </div> </div> <div id="restoration-error" style="display:none"> <div class="akeeba-block--failure"> <h4> <?php echo \JText::_('COM_AKEEBA_RESTORE_LABEL_FAILED'); ?> </h4> <div id="errorframe"> <p><?php echo \JText::_('COM_AKEEBA_RESTORE_LABEL_FAILED_INFO'); ?></p> <p id="backup-error-message"> </p> </div> </div> </div> <div id="restoration-extract-ok" style="display:none"> <div class="akeeba-block--success"> <h4> <?php echo \JText::_('COM_AKEEBA_RESTORE_LABEL_SUCCESS'); ?> </h4> <p> <?php echo \JText::_('COM_AKEEBA_RESTORE_LABEL_SUCCESS_INFO2'); ?> </p> <p> <?php echo \JText::_('COM_AKEEBA_RESTORE_LABEL_SUCCESS_INFO2B'); ?> </p> </div> <p> <button class="akeeba-btn--primary" id="restoration-runinstaller" onclick="return false;"> <span class="akion-android-share"></span> <?php echo \JText::_('COM_AKEEBA_RESTORE_LABEL_RUNINSTALLER'); ?> </button> </p> <p> <button class="akeeba-btn--green" id="restoration-finalize" style="display: none" onclick="return false;"> <span class="akion-android-exit"></span> <?php echo \JText::_('COM_AKEEBA_RESTORE_LABEL_FINALIZE'); ?> </button> </p> </div>Private