-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathscript.php
More file actions
32 lines (28 loc) · 693 Bytes
/
script.php
File metadata and controls
32 lines (28 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* ExtensionUpdates Task Plugin
*
* @copyright Copyright (C) 2024 Tobias Zulauf All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.txt GNU General Public License Version 2 or later
*/
defined('_JEXEC') or die;
use Joomla\CMS\Installer\InstallerScript;
/**
* Installation class to perform additional changes during install/uninstall/update
*
* @since 1.0.0
*/
class plgTaskExtensionUpdatesInstallerScript extends InstallerScript
{
/**
* Extension script constructor.
*
* @since 1.0.0
*/
public function __construct()
{
// Define the minumum versions to be supported.
$this->minimumJoomla = '5.1';
$this->minimumPhp = '8.1';
}
}