mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-09 12:58:52 +00:00
39 lines
800 B
PHP
39 lines
800 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package notifications
|
|
* @copyright (c) 2012 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
*
|
|
*/
|
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
|
|
/**
|
|
* @ignore
|
|
*/
|
|
if (!defined('IN_PHPBB'))
|
|
{
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Base notifications method class
|
|
* @package notifications
|
|
*/
|
|
abstract class phpbb_notifications_method_base implements phpbb_notifications_method_interface
|
|
{
|
|
protected $phpbb_container;
|
|
protected $db;
|
|
protected $user;
|
|
|
|
public function __construct(ContainerBuilder $phpbb_container, $data = array())
|
|
{
|
|
// phpBB Container
|
|
$this->phpbb_container = $phpbb_container;
|
|
|
|
// Some common things we're going to use
|
|
$this->db = $phpbb_container->get('dbal.conn');
|
|
$this->user = $phpbb_container->get('user');
|
|
}
|
|
}
|