OwlCyberSecurity - MANAGER
Edit File: 49a8143bb17aed050fb4fb127f69a27d13fe634f.php
<?php /* /home/annegardxb/www/so-assurances/administrator/components/com_akeeba/tmpl/Configuration/confwiz_modal.blade.php */ ?> <?php /** * @package akeebabackup * @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ // Protect from unauthorized access defined('_JEXEC') || die(); /** @var \FOF40\View\DataView\Html $this */ // Make sure we only ever add this HTML and JS once per page if (defined('AKEEBA_VIEW_JAVASCRIPT_CONFWIZ_MODAL')) { return; } define('AKEEBA_VIEW_JAVASCRIPT_CONFWIZ_MODAL', 1); $js = <<< JS akeeba.Loader.add('akeeba.System', function(){ akeeba.System.documentReady(function(){ akeeba.System.addEventListener('comAkeebaConfigurationWizardModalClose', 'click', function() { akeeba.System.configurationWizardModal.close(); }); setTimeout(function() { akeeba.System.configurationWizardModal = akeeba.Modal.open({ inherit: '#akeeba-config-confwiz-bubble', width: '80%' }); }, 500); }); }); JS; $this->container->template->addJSInline($js); ?> <div id="akeeba-config-confwiz-bubble" class="modal fade" role="dialog" aria-labelledby="DialogLabel" aria-hidden="true" style="display: none;"> <div class="akeeba-renderer-fef"> <h4> <?php echo \Joomla\CMS\Language\Text::_('COM_AKEEBA_CONFIG_HEADER_CONFWIZ'); ?> </h4> <div> <p> <?php echo \Joomla\CMS\Language\Text::_('COM_AKEEBA_CONFIG_LBL_CONFWIZ_INTRO'); ?> </p> <p> <a href="index.php?option=com_akeeba&view=ConfigurationWizard" class="akeeba-btn--green akeeba-btn--big"> <span class="akion-flash"></span> <?php echo \Joomla\CMS\Language\Text::_('COM_AKEEBA_CONFWIZ'); ?> </a> </p> <p> <?php echo \Joomla\CMS\Language\Text::_('COM_AKEEBA_CONFIG_LBL_CONFWIZ_AFTER'); ?> </p> </div> <div> <a href="#" class="akeeba-btn--ghost akeeba-btn--small" id="comAkeebaConfigurationWizardModalClose" onclick="akeeba.System.configurationWizardModal.close();"> <span class="akion-close"></span> <?php echo \Joomla\CMS\Language\Text::_('JCANCEL'); ?> </a> </div> </div> </div>