1 | <?php |
||
12 | class topic_in_queue extends \phpbb\notification\type\topic_in_queue |
||
13 | { |
||
14 | /* @var \blitze\content\services\types */ |
||
15 | protected $types; |
||
16 | |||
17 | /** |
||
18 | * Notification Type Base Constructor |
||
19 | * |
||
20 | * @param \phpbb\db\driver\driver_interface $db |
||
21 | * @param \phpbb\language\language $language |
||
22 | * @param \phpbb\user $user |
||
23 | * @param \phpbb\auth\auth $auth |
||
24 | * @param string $phpbb_root_path |
||
25 | * @param string $php_ext |
||
26 | * @param string $user_notifications_table |
||
27 | * @param \blitze\content\services\types $types |
||
28 | */ |
||
29 | public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\language\language $language, \phpbb\user $user, \phpbb\auth\auth $auth, $phpbb_root_path, $php_ext, $user_notifications_table, \blitze\content\services\types $types) |
||
35 | |||
36 | /** |
||
37 | * Get the url to this item |
||
38 | * |
||
39 | * @return string URL |
||
40 | */ |
||
41 | public function get_url() |
||
50 | } |
||
51 |