home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phpnuke / PHP-Nuke-7.5.exe / html / includes / javascript.php < prev    next >
PHP Script  |  2004-01-29  |  3KB  |  67 lines

  1. <?php
  2.  
  3. /************************************************************************/
  4. /* PHP-NUKE: Web Portal System                                          */
  5. /* ===========================                                          */
  6. /*                                                                      */
  7. /* Copyright (c) 2002 by Francisco Burzi                                */
  8. /* http://phpnuke.org                                                   */
  9. /*                                                                      */
  10. /* This program is free software. You can redistribute it and/or modify */
  11. /* it under the terms of the GNU General Public License as published by */
  12. /* the Free Software Foundation; either version 2 of the License.       */
  13. /************************************************************************/
  14.  
  15. /***************************************************************************
  16.  *   This file is part of the phpBB2 port to Nuke 6.0 (c) copyright 2002
  17.  *   by Tom Nitzschner (tom@toms-home.com)
  18.  *   http://bbtonuke.sourceforge.net (or http://www.toms-home.com)
  19.  *
  20.  *   As always, make a backup before messing with anything. All code
  21.  *   release by me is considered sample code only. It may be fully
  22.  *   functual, but you use it at your own risk, if you break it,
  23.  *   you get to fix it too. No waranty is given or implied.
  24.  *
  25.  *   Please post all questions/request about this port on http://bbtonuke.sourceforge.net first,
  26.  *   then on my site. All original header code and copyright messages will be maintained
  27.  *   to give credit where credit is due. If you modify this, the only requirement is
  28.  *   that you also maintain all original copyright messages. All my work is released
  29.  *   under the GNU GENERAL PUBLIC LICENSE. Please see the README for more information.
  30.  *
  31.  ***************************************************************************/
  32.         
  33. if (eregi("javascript.php",$_SERVER['PHP_SELF'])) {
  34.     Header("Location: ../index.php");
  35.     die();
  36. }
  37.  
  38. ##################################################
  39. # Include for some common javascripts functions  #
  40. ##################################################
  41.  
  42. if ($userpage == 1) {
  43.     echo "<SCRIPT type=\"text/javascript\">\n";
  44.     echo "<!--\n";
  45.     echo "function showimage() {\n";
  46.     echo "if (!document.images)\n";
  47.     echo "return\n";
  48.     echo "document.images.avatar.src=\n";
  49.     echo "'$nukeurl/modules/Forums/images/avatars/gallery/' + document.Register.user_avatar.options[document.Register.user_avatar.selectedIndex].value\n";
  50.     echo "}\n";
  51.     echo "//-->\n";
  52.     echo "</SCRIPT>\n\n";
  53. }
  54.  
  55. global $module, $name;
  56.  
  57. if ($module == 1 AND file_exists("modules/$name/copyright.php")) {
  58.     echo "<script type=\"text/javascript\">\n";
  59.     echo "<!--\n";
  60.     echo "function openwindow(){\n";
  61.     echo "    window.open (\"modules/$name/copyright.php\",\"Copyright\",\"toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width=400,height=200\");\n";
  62.     echo "}\n";
  63.     echo "//-->\n";
  64.     echo "</SCRIPT>\n\n";
  65. }
  66.  
  67. ?>