Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands
In directory usw-pr-cvs1:/tmp/cvs-serv29160
Added Files:
help.cmd.php3
Log Message:
First working commands :)
--- NEW FILE ---
<?php
//
// +--------------------------------------------------------------------------+
// | phpMyChat version 0.15.0 |
// +--------------------------------------------------------------------------+
// | Copyright (c) 2000-2001 The phpHeaven-team |
// +--------------------------------------------------------------------------+
// | This library does the work associated to the 'help' command. |
// | |
// | It is called by the 'commands.lib.php3' script. |
// +--------------------------------------------------------------------------+
// | From the phpMyChat project: |
// | http://www.phpheaven.net/projects/phpMyChat/ |
// | |
// | Authors: the phpHeaven-team <php...@ya...> |
// +--------------------------------------------------------------------------+
//
// $Id: help.cmd.php3,v 1.1 2001/04/05 00:43:50 loic1 Exp $
//
// The work for the 'help' command.
//
/**
* Define a table that contains JavaScript instructions to be ran
*/
$jsToRun = array(
'<script type="text/javascript" language="javascript">',
'<!--',
'window.parent.pmcHelpPopup(' . ((L_CHARSET == 'windows-1256') ? 610 : 10) . ');',
'// -->',
'</SCRIPT>'
);
$isCommand = true;
$isPopup = true;
?>
|