| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/icd/administrator/components/com_akeeba/views/confwiz/ |
Upload File : |
<?php
/**
* @package AkeebaBackup
* @copyright Copyright (c)2006-2011 Nicholas K. Dionysopoulos
* @license GNU General Public License version 3, or later
* @version $Id: view.html.php 415 2011-01-26 15:15:41Z nikosdion $
* @since 1.3
*/
// Protect from unauthorized access
defined('_JEXEC') or die('Restricted Access');
// Load framework base classes
jimport('joomla.application.component.view');
/**
* Akeeba Backup Configuration Wizard view class
*
*/
class AkeebaViewConfwiz extends JView
{
function display()
{
$registry =& AEFactory::getConfiguration();
// Set the toolbar title
JToolBarHelper::title(JText::_('AKEEBA').':: <small>'.JText::_('AKEEBA_CONFWIZ').'</small>','akeeba');
if(AKEEBA_JVERSION == '15') {
JToolBarHelper::back('Back', 'index.php?option='.JRequest::getCmd('option'));
} else {
JToolBarHelper::back('JTOOLBAR_BACK', 'index.php?option='.JRequest::getCmd('option'));
}
// Add references to CSS and JS files
AkeebaHelperIncludes::includeMedia(false);
// Load the Configuration Wizard Javascript file
$document = JFactory::getDocument();
$document->addScript( JURI::base().'../media/com_akeeba/js/confwiz.js' );
// Add live help
AkeebaHelperIncludes::addHelp();
$this->setLayout('wizard');
parent::display();
}
}