Completed
Push — master ( 783e4f...8995ac )
by Matt
01:30
created

ext::is_enableable()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 14

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 14
rs 9.7998
c 0
b 0
f 0
cc 2
nc 2
nop 0
1
<?php
2
/**
3
 *
4
 * Topic Image Preview. An extension for the phpBB Forum Software package.
5
 *
6
 * @copyright (c) 2017, Matt Friedman
7
 * @license GNU General Public License, version 2 (GPL-2.0)
8
 *
9
 */
10
11
namespace vse\topicimagepreview;
12
13
class ext extends \phpbb\extension\base
14
{
15
	/**
16
	 * The minimum phpBB version required by this extension
17
	 */
18
	const PHPBB_MIN_VERSION = '3.2.1';
19
20
	/**
21
	 * {@inheritdoc}
22
	 */
23
	public function is_enableable()
24
	{
25
		// Require minimum phpBB version.
26
		$is_enableable = phpbb_version_compare(PHPBB_VERSION, self::PHPBB_MIN_VERSION, '>=');
27
28
		// If not enableable, add our custom install error language keys
29
		if (!$is_enableable)
30
		{
31
			$lang = $this->container->get('language');
32
			$lang->add_lang('tip_install', 'vse/topicimagepreview');
33
		}
34
35
		return $is_enableable;
36
	}
37
}
38