-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathext.php
56 lines (46 loc) · 1.55 KB
/
ext.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
*
* @package PM SPy
* @copyright (c) 2016 ForumHulp.com
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
namespace forumhulp\pmspy;
class ext extends \phpbb\extension\base
{
public function is_enableable()
{
if (!class_exists('forumhulp\helper\helper'))
{
$this->container->get('user')->add_lang_ext('forumhulp/pmspy', 'info_acp_pmspy');
trigger_error($this->container->get('user')->lang['FH_HELPER_NOTICE'], E_USER_WARNING);
}
if (!$this->container->get('ext.manager')->is_enabled('forumhulp/helper'))
{
$this->container->get('ext.manager')->enable('forumhulp/helper');
}
return class_exists('forumhulp\helper\helper');
}
function enable_step($old_state)
{
switch ($old_state)
{
case '': // Empty means nothing has run yet
$this->container->get('user')->add_lang_ext('forumhulp/pmspy', 'info_acp_pmspy');
$this->container->get('template')->assign_var('L_EXTENSION_ENABLE_SUCCESS', $this->container->get('user')->lang['EXTENSION_ENABLE_SUCCESS'] .
(isset($this->container->get('user')->lang['PMSPY_NOTICE']) ?
sprintf($this->container->get('user')->lang['PMSPY_NOTICE'],
$this->container->get('user')->lang['ACP_CAT_POSTING'],
$this->container->get('user')->lang['ACP_MESSAGES'],
$this->container->get('user')->lang['ACP_PM_SPY']) : ''));
// Run parent enable step method
return parent::enable_step($old_state);
break;
default:
// Run parent enable step method
return parent::enable_step($old_state);
break;
}
}
}