| Server IP : 54.36.91.62 / Your IP : 216.73.217.111 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/amisdesseniors-fr/montpellier/plugins/privacy/kunena/ |
Upload File : |
<?php
/**
* Kunena Package
*
* @package Kunena.Package
*
* @copyright Copyright (C) 2008 - 2025 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\Installer\Adapter\ComponentAdapter;
use Joomla\CMS\Installer\InstallerScript;
use Joomla\Database\DatabaseDriver;
use Joomla\Database\Exception\ExecutionFailureException;
/**
* Kunena package installer script.
*
* @since Kunena
*/
class plgPrivacyKunenaInstallerScript extends InstallerScript
{
/**
* The extension name. This should be set in the installer script.
*
* @var string
* @since 5.4.0
*/
protected $extension = 'plg_privacy_kunena';
/**
* Minimum PHP version required to install the extension
*
* @var string
* @since 5.4.0
*/
protected $minimumPhp = '7.4.1';
/**
* Minimum Joomla! version required to install the extension
*
* @var string
* @since 6.0.0
*/
protected $minimumJoomla = '4.3.4';
/**
* List of required PHP extensions.
*
* @var array
* @since Kunena
*/
protected $extensions = ['dom', 'gd', 'json', 'pcre', 'SimpleXML'];
/**
* @var Joomla\CMS\Application\CMSApplication Holds the application object
*
* @since Kunena 6.0
*/
protected $app;
/**
* Database object
*
* @var DatabaseDriver
*
* @since 4.0.0
*/
protected $db;
/**
* @var string During an update, it will be populated with the old release version
*
* @since Kunena 6.0
*/
private $oldRelease;
/**
* method to run after an install/update/uninstall method
*
* @param string $type 'install', 'update' or 'discover_install'
* @param ComponentAdapter $parent Installer object
*
* @return void
*
* @throws Exception
* @since Kunena 6.0
*/
public function postflight($type, $parent)
{
$type = strtolower($type);
if ($type == 'install' || $type == 'discover_install') {
$this->enablePlugin('plg_privacy_kunena');
}
}
/**
* @param string $pluginName The name of plugin to enable
*
* @return boolean|false
* @since version
*/
public function enablePlugin($pluginName)
{
// Create a new db object.
$db = Factory::getContainer()->get('DatabaseDriver');
$query = $db->createQuery();
$query
->update($db->quoteName('#__extensions'))
->set($db->quoteName('enabled') . ' = 1')
->where($db->quoteName('name') . ' = :pluginname')
->where($db->quoteName('type') . ' = ' . $db->quote('plugin'))
->bind(':pluginname', $pluginName);
$db->setQuery($query);
try {
$db->execute();
} catch (ExecutionFailureException $e) {
return false;
}
}
}