diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-08 15:49:22 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-08 15:49:22 -0500 |
commit | a4eb8bf47a77cb2637bfad5db20ab9f0dc236059 (patch) | |
tree | 67a643c0bc618eb3e98adae23d450e0d0cc106c3 | |
parent | 7fee0cfdf60c9aeebcd498d2f41696bb7fed2dd0 (diff) | |
download | forums-a4eb8bf47a77cb2637bfad5db20ab9f0dc236059.tar forums-a4eb8bf47a77cb2637bfad5db20ab9f0dc236059.tar.gz forums-a4eb8bf47a77cb2637bfad5db20ab9f0dc236059.tar.bz2 forums-a4eb8bf47a77cb2637bfad5db20ab9f0dc236059.tar.xz forums-a4eb8bf47a77cb2637bfad5db20ab9f0dc236059.zip |
[ticket/11103] Jabber notification method base
PHPBB3-11103
-rw-r--r-- | phpBB/includes/notifications/method/jabber.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/phpBB/includes/notifications/method/jabber.php b/phpBB/includes/notifications/method/jabber.php new file mode 100644 index 0000000000..15614db96c --- /dev/null +++ b/phpBB/includes/notifications/method/jabber.php @@ -0,0 +1,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 + } +} |