mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-02 13:47:55 +02:00
41 lines
729 B
PHP
41 lines
729 B
PHP
<?php
|
|
/**
|
|
*
|
|
* This file is part of the phpBB Forum Software package.
|
|
*
|
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
*
|
|
* For full copyright and license information, please see
|
|
* the docs/CREDITS.txt file.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @ignore
|
|
*/
|
|
if (!defined('IN_PHPBB'))
|
|
{
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Notifications service class
|
|
*/
|
|
class phpbb_notification_manager_helper extends \phpbb\notification\manager
|
|
{
|
|
public function set_var($name, $value)
|
|
{
|
|
$this->$name = $value;
|
|
}
|
|
|
|
// Extra dependencies for get_*_class functions
|
|
protected $auth = null;
|
|
protected $config = null;
|
|
public function setDependencies($auth, $config)
|
|
{
|
|
$this->auth = $auth;
|
|
$this->config = $config;
|
|
}
|
|
}
|