-
Notifications
You must be signed in to change notification settings - Fork 36
/
install.php
41 lines (39 loc) · 931 Bytes
/
install.php
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
33
34
35
36
37
38
39
40
41
<?php
/**
* @package Com_Localise
* @subpackage com_localise.script
*
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
/**
* Installation class to perform additional changes during install/uninstall/update
*
* @package Localise
* @since 4.0
*/
class Com_LocaliseInstallerScript extends JInstallerScript
{
/**
* The extension name. This should be set in the installer script.
*
* @var string
* @since 4.0.32
*/
protected $extension = 'com_localise';
/**
* Minimum PHP version required to install the extension
*
* @var string
* @since 4.0.32
*/
protected $minimumPhp = '5.3.10';
/**
* Minimum Joomla! version required to install the extension
*
* @var string
* @since 4.0.32
*/
protected $minimumJoomla = '3.8.0';
}