芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/message/output/jabber/db/install.php
. /** * Jabber message processor installation code * * @package message_jabber * @copyright 2009 Dongsheng Cai
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Install the Jabber message processor */ function xmldb_message_jabber_install(){ global $DB; $result = true; $provider = new stdClass(); $provider->name = 'jabber'; $DB->insert_record('message_processors', $provider); return $result; }