HEX
Server: Apache
System: Linux webm010.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: iestorre (46869)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/iestorre/informatica/administrator/components/com_akeeba/views/config/tmpl/confwiz_modal.php
<?php
/**
 * @package Akeeba
 * @copyright Copyright (c)2009-2014 Nicholas K. Dionysopoulos
 * @license GNU General Public License version 3, or later
 * @since 3.0
 */

// Protect from unauthorized access
defined('_JEXEC') or die();

JHtml::_('behavior.modal');

?>

<div id="akeeba-config-confwiz-bubble" class="modal">
	<div class="modal-header">
		<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
		<h3>
			<?php echo JText::_('COM_AKEEBA_CONFIG_HEADER_CONFWIZ') ?>
		</h3>
	</div>
	<div class="modal-body">
		<p>
			<?php echo JText::_('COM_AKEEBA_CONFIG_LBL_CONFWIZ_INTRO') ?>
		</p>
		<p>
			<a href="index.php?option=com_akeeba&view=confwiz"
			   class="btn btn-large btn-success">
				<span class="icon icon-lightning"></span>
				<?php echo JText::_('AKEEBA_CONFWIZ'); ?>
			</a>
		</p>
		<p>
			<?php echo JText::_('COM_AKEEBA_CONFIG_LBL_CONFWIZ_AFTER'); ?>
		</p>
	</div>
	<div class="modal-footer">
		<a href="#" class="btn" data-dismiss="modal">
			<span class="icon icon-cancel"></span>
			<?php echo JText::_('JCANCEL'); ?>
		</a>
	</div>
</div>
<script>
	jQuery(document).ready(function(){
		jQuery("#akeeba-config-confwiz-bubble").modal({
			backdrop: true,
			keyboard: true,
			show: true
		});
	});
</script>