-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathext.php
More file actions
56 lines (46 loc) · 1.53 KB
/
ext.php
File metadata and controls
56 lines (46 loc) · 1.53 KB
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 Statistics
* @copyright (c) 2014 ForumHulp.com
* @license Proprietary
*
*/
namespace forumhulp\statistics;
class ext extends \phpbb\extension\base
{
public function is_enableable()
{
if (!class_exists('forumhulp\helper\helper'))
{
$this->container->get('user')->add_lang_ext('forumhulp/statistics', 'info_acp_statistics');
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/statistics', 'info_acp_statistics');
$this->container->get('template')->assign_var('L_EXTENSION_ENABLE_SUCCESS', $this->container->get('user')->lang['EXTENSION_ENABLE_SUCCESS'] .
(isset($this->container->get('user')->lang['STATISTICS_NOTICE']) ?
sprintf($this->container->get('user')->lang['STATISTICS_NOTICE'],
$this->container->get('user')->lang['ACP_CAT_GENERAL'],
$this->container->get('user')->lang['ACP_QUICK_ACCESS'],
$this->container->get('user')->lang['ACP_STATISTICS']) : ''));
// 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;
}
}
}