| Server IP : 54.36.91.62 / Your IP : 216.73.217.94 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/www/cj79373/administrator/components/com_kunena/install/ |
Upload File : |
<?php
/**
* Kunena Component
*
* @package Kunena.Installer
*
* @copyright Copyright (C) 2008 - 2022 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die();
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
/**
* The HTML Kunena configuration view.
* @since Kunena
*/
class KunenaViewInstall extends \Joomla\CMS\MVC\View\HtmlView
{
/**
* @var null
* @since Kunena
*/
protected $model = null;
/**
* Method to display the view.
*
* @param string $tpl A template file to load.
*
* @return mixed JError object on failure, void on success.
*
* @throws object JError
* @since 1.6
*/
public function display($tpl = null)
{
$layout = $this->getLayout();
if ($layout == 'schema')
{
parent::display($tpl);
return;
}
// Load the view data.
$this->model = $this->get('Model');
$versions = $this->model->getDetectVersions();
$version = reset($versions);
$this->model->setAction(strtolower($version->action));
$this->model->setStep(0);
Factory::getApplication()->input->post->get('hidemainmenu', 1);
parent::display($tpl);
}
/**
* Private method to set the toolbar for this view
*
* @access private
*
* @return void
* @since Kunena
*/
public function setToolBar()
{
// Set the titlebar text
JToolbarHelper::title('<span>Kunena ' . KunenaForum::version() . '</span> ' . Text::_('COM_KUNENA_INSTALLER'), 'kunena.png');
}
/**
* @since Kunena
* @throws Exception
* @throws KunenaSchemaException
* @return void
*/
public function displaySchema()
{
require_once KPATH_ADMIN . '/install/schema.php';
$schema = new KunenaModelSchema;
$create = $schema->getCreateSQL();
echo '<textarea cols="80" rows="50">';
echo $this->escape($schema->getSchema()->saveXML());
echo '</textarea>';
if (KunenaForum::isDev())
{
echo '<textarea cols="80" rows="20">';
foreach ($create as $item)
{
echo $this->escape($item ['sql']) . "\n\n";
}
echo '</textarea>';
}
}
/**
* @since Kunena
* @throws Exception
* @throws KunenaSchemaException
* @return void
*/
public function displaySchemaDiff()
{
require_once KPATH_ADMIN . '/install/schema.php';
$schema = new KunenaModelSchema;
$diff = $schema->getDiffSchema();
$sql = $schema->getSchemaSQL($diff);
echo '<textarea cols="80" rows="20">';
echo $this->escape($diff->saveXML());
echo '</textarea>';
if (KunenaForum::isDev())
{
echo '<textarea cols="80" rows="20">';
foreach ($sql as $item)
{
echo $this->escape($item ['sql']) . "\n\n";
}
echo '</textarea>';
}
}
}