blob: 15614db96c517b663df53a16e05dcd1c6cf48266 (
plain)
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
|
<?php
/**
*
* @package notifications
* @copyright (c) 2012 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
* Jabber notification method class
* This class handles sending Jabber notifications for notifications
*
* @package notifications
*/
class phpbb_notifications_method_jabber extends phpbb_notifications_method_base
{
public static function is_available()
{
// Is jabber enabled & can this user receive jabber messages?
return false; // for now
}
public function notify()
{
// message the user
}
}
|