forked from PayBas/PBWoW3ext
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathext.php
More file actions
36 lines (29 loc) · 827 Bytes
/
Copy pathext.php
File metadata and controls
36 lines (29 loc) · 827 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
33
34
35
36
<?php
/**
*
* @package PBWoW Extension
* @copyright (c) 2015 PayBas
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/
namespace paybas\pbwowext;
class ext extends \phpbb\extension\base
{
const MIN_PHP_VERSION = '8.1.0';
const MIN_PHPBB_VERSION = '3.3.0';
public function is_enableable()
{
$errors = [];
$user = $this->container->get('user');
$user->add_lang_ext('paybas/pbwowext', 'info_acp_pbwowext');
if (version_compare(PHP_VERSION, self::MIN_PHP_VERSION, '<'))
{
$errors[] = $user->lang('PBWOW_PHP_VERSION_FAIL', self::MIN_PHP_VERSION, PHP_VERSION);
}
if (phpbb_version_compare(PHPBB_VERSION, self::MIN_PHPBB_VERSION, '<'))
{
$errors[] = $user->lang('PBWOW_PHPBB_VERSION_FAIL', self::MIN_PHPBB_VERSION, PHPBB_VERSION);
}
return empty($errors) ? true : $errors;
}
}