Contributors: sandfox
Tags: xmpp, jabber, library
Requires at least: 3.0
Tested up to: 4.9
Stable tag: trunk
XMPP Enabled provides a single-function API for other plugins that use Jabber/XMPP messaging protocol.
XMPP Enabled provides a single function API for other plugins that use Jabber/XMPP messaging protocol. See API section for details if you want to use XMPP protocol in your notifications.
- GitHub page: https://github.com/sandfoxme/xmpp-enabled
- Upload
xmpp-enabled
folder to the/wp-content/plugins/
directory - Activate the plugin through the 'Plugins' menu in WordPress
- Set up default Jabber account in XMPP Enabled Settings page
To provide a single XMPP account settings page for all Jabber notification plugins
It's safe to use xmpp_send() multiple times. All calls will use the same connection
- Mako N (Japanese translation and i18n support)
- PHP 7 support
- Removed from packagist.org (You can use GitHub link in composer directly)
- [Bug] Password validation fix
- Japanese translation and internationalisation support from Mako N
- Russian translation
- Remove unnecessary part of XMPPHP
- Lang builder
- Consider plugin is stable :)
- Installation via composer
sand-fox.com to sandfox.org
- minor bugfixes
- Fixed array serialization in logs
- PHP5 is now required minimum
- Bugfix for disabling encryption
- Multiple calls to xmpp_send() now use single connection
- Now user can disable encryption
- Fixed menu creation priority
- Fixed wrong behaviour for custom hostnames.
- Improved logging
- A small usability change.
- A first public beta.
Breaks old logs
Multiple calls to xmpp_send() now behave smarter
Update is strongly recommended for those who manually set server hostname
The single function for sending XMPP Messages is xmpp_enabled
. It can be called directly from any WordPress plugin
xmpp_enabled($recipient, $message, $subject='', $type='normal');
- $recipient is a valid (bare or full) JID of the recipient like '[email protected]'
- $message is a plain text message to be sent
- $subject is a title line for message. It is usually omitted for chat-type messages
- $type is a type of message. It can be 'chat', 'normal' or 'headline'. See RFC 3921 for details
Example: xmpp_send('[email protected]',"Read our new post:\nhttp://something.com/new-post",'New post is published','headline');
XMPP Enabled creates it's own section and you're free to use it for your plugins. The code is 'xmpp-enabled'
Example: add_submenu_page('xmpp-enabled', 'Jabber Comment Notifications', 'Comment Notifications', 'administrator', __FILE__, 'jcommnotify_settings');
See Adding Administration Menus in WordPress Codex for further details