You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

38 lines
1.0 KiB

<?php
// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
/**
* @return array
*/
function module_xmpp_info()
{
return [
'description' => tra('Hold a chat session using XMPP (uses the ConverseJS client).'),
'name' => tra('XMPP'),
'params' => [
'show_controlbox_by_default' => [
'name' => tra('Show controlbox on load'),
'description' => tra('If controlbox should be shown after page load'),
'default' => 'y',
'filter' => 'alpha',
],
],
'prefs' => ['xmpp_feature'],
'title' => tra('XMPP'),
'type' => 'function'
];
}
/**
* @param $mod_reference
* @param $module_params
*/
function module_xmpp($mod_reference, &$module_params)
{
TikiLib::lib('xmpp')->render_xmpp_client($module_params);
}