<?php if (!defined('PmWiki')) exit(); define('pmwiki_PFC',1); /* * phpfreechat_pmwiki - Integration of phpfreechat into pmwiki * * Author: Frank Graffagnino - frankie@graffagnino.net * * Copyright 2007 by Frank Graffagnino * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ $RecipeInfo['phpfreechat_pmwiki']['Version'] = '2007-07-09'; # Get the current group name to be used as default server id $pmwiki_PFC_pagename = ResolvePageName($pagename); $pmwiki_PFC_Group = PageVar($pmwiki_PFC_pagename, '$Group'); # Set defaults SDV($pmwiki_PFC_ChatDir, "$FarmD/pub/phpfreechat-1.0-beta11"); SDV($pmwiki_PFC_UseAuthName, true); SDVA($pmwiki_PFC_params, array( 'nick' => "guest".rand(1,10000), 'title' => "$WikiTitle chat", 'serverid' => md5($pmwiki_PFC_Group) )); # Include the main PFC class require_once "$pmwiki_PFC_ChatDir/src/phpfreechat.class.php"; # Instantiation $chat = new phpFreeChat( $pmwiki_PFC_params );