name : script.php
<?php

/**
 * @package     Joomla.Administrator
 * @subpackage  Weblinks
 *
 * @copyright   Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects

use Joomla\CMS\Installer\InstallerScript;

/**
 * Installation class to perform additional changes during install/uninstall/update
 *
 * @since  __DEPLOY_VERSION__
 */
class Pkg_WeblinksInstallerScript extends InstallerScript
{
    /**
     * Extension script constructor.
     *
     * @since   __DEPLOY_VERSION__
     */
    public function __construct()
    {
        $this->minimumJoomla = '4.3.0';
        $this->minimumPhp    = JOOMLA_MINIMUM_PHP;
    }
}

© 2025 Cubjrnet7