forked from tas2580/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext.php
69 lines (69 loc) · 1.6 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
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
/**
*
* @package phpBB Extension - Wiki
* @copyright (c) 2015 tas2580 (https://tas2580.net)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
namespace tas2580\wiki;
/**
* @ignore
*/
class ext extends \phpbb\extension\base
{
public function enable_step($old_state)
{
switch ($old_state)
{
case '': // Empty means nothing has run yet
return $this->notification_handler('enable', array(
'tas2580.wiki.notification.type.articke_edit',
));
break;
default:
// Run parent enable step method
return parent::enable_step($old_state);
break;
}
}
public function disable_step($old_state)
{
switch ($old_state)
{
case '': // Empty means nothing has run yet
return $this->notification_handler('disable', array(
'tas2580.wiki.notification.type.articke_edit',
));
break;
default:
// Run parent disable step method
return parent::disable_step($old_state);
break;
}
}
public function purge_step($old_state)
{
switch ($old_state)
{
case '': // Empty means nothing has run yet
return $this->notification_handler('purge', array(
'tas2580.wiki.notification.type.articke_edit',
));
break;
default:
// Run parent purge step method
return parent::purge_step($old_state);
break;
}
}
protected function notification_handler($step, $notification_types)
{
$phpbb_notifications = $this->container->get('notification_manager');
foreach ($notification_types as $notification_type)
{
$phpbb_notifications->{$step . '_notifications'}($notification_type);
}
return 'notifications';
}
}