|
From: Selven <sel...@us...> - 2007-06-21 18:21:21
|
Update of /cvsroot/mxbb/mx_shoutbox/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27703/includes Added Files: constants.php functions.php index.html Log Message: First Upload --- NEW FILE: functions.php --- <?php // ------------------------------------------------------------- // // // FILENAME : functions.php // COPYRIGHT : © 2002, 2003 apegaming.net // WWW : http://www.blame-the-french.com.com/ // LICENCE : GPL vs2.0 [ see /docs/COPYING ] // // ------------------------------------------------------------- if ( !defined('IN_PORTAL') ) { die("Hacking attempt"); } function shout_msg($message) { global $template; $template->set_filenames(array( 'body' => 'mx_shout_msg.tpl') ); $template->assign_vars(array( 'SHOUT_MSG' => $message ) ); $template->pparse('body'); } ?> --- NEW FILE: index.html --- --- NEW FILE: constants.php --- <?php // ------------------------------------------------------------- // // // FILENAME : constants.php // COPYRIGHT : © 2002, 2003 apegaming.net // WWW : http://www.blame-the-french.com.com/ // LICENCE : GPL vs2.0 [ see /docs/COPYING ] // // ------------------------------------------------------------- if ( !defined('IN_PORTAL') ) { die("Hacking attempt"); } // Table names define('SHOUTBOX_TABLE', $mx_table_prefix.'shoutbox'); define('SHOUTBOX_CONFIG_TABLE', $mx_table_prefix.'shoutbox_config'); define('SH_VERSION','2.2.4'); ?> |