[ Index ]
 

Code source de PHP NUKE 7.9

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/modules/Journal/ -> copyright.php (source)

   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      // To have the Copyright window work in your module just fill the following

  15      // required information and then copy the file "copyright.php" into your

  16      // module's directory. It's all, as easy as it sounds ;)

  17      // NOTE: in $download_location PLEASE give the direct download link to the file!!!

  18      $author_name = "Enhanced by sixonetonoffun";
  19      $author_email = "";
  20      $author_homepage = "http://www.netflake.com";
  21      $license = "GNU/GPL";
  22      $download_location = "http://www.netflake.com";
  23      $module_version = "2.0";
  24      $module_description = "<p>This is an updated version of the <a href='http://comuptercops.biz' target='_blank'>Paul Laudanski's </a> V1.51 version and <a href='http://www.nukeresources.com' target='_blank'>Chatserv's Patched Series 2.5</a> incremented to V2.0 to prevent confusion.</p> <p>V2.0 Image Pack Created by the talented <a href='http://www.GanjaUK.com' target='_blank'>Ganja</a>!</p><br>Let have a public Journal to your users. This is a modified version of <a href=\"http://viadome.net\">Joseph Howard's</a> Member's Journal which was based on the original Atomic Journal by <a href=\"http://www.trevor.net\">Trevor Scott</a>. Translation system implementation, SQL abstraction layer and HTML cleanup by <a href=\"http://phpnuke.org\" target=\"new\">Francisco Burzi</a>.";
  25      // DO NOT TOUCH THE FOLLOWING COPYRIGHT CODE. YOU'RE JUST ALLOWED TO CHANGE YOUR "OWN"

  26      // MODULE'S DATA (SEE ABOVE) SO THE SYSTEM CAN BE ABLE TO SHOW THE COPYRIGHT NOTICE

  27      // FOR YOUR MODULE/ADDON. PLAY FAIR WITH THE PEOPLE THAT WORKED CODING WHAT YOU USE!!

  28      // YOU ARE NOT ALLOWED TO MODIFY ANYTHING ELSE THAN THE ABOVE REQUIRED INFORMATION.

  29      // AND YOU ARE NOT ALLOWED TO DELETE THIS FILE NOR TO CHANGE ANYTHING FROM THIS FILE IF

  30      // YOU'RE NOT THIS MODULE'S AUTHOR.

  31      function show_copyright() {
  32          global $author_name, $author_email, $author_homepage, $license, $download_location, $module_version, $module_description;
  33          if ($author_name == "") {
  34              $author_name = "N/A";
  35          }
  36          if ($author_email == "") {
  37              $author_email = "N/A";
  38          }
  39          if ($author_homepage == "") {
  40              $author_homepage = "N/A";
  41          }
  42          if ($license == "") {
  43              $license = "N/A";
  44          }
  45          if ($download_location == "") {
  46              $download_location = "N/A";
  47          }
  48          if ($module_version == "") {
  49              $module_version = "N/A";
  50          }
  51          if ($module_description == "") {
  52              $module_description = "N/A";
  53          }
  54          $module_name = basename(dirname(__FILE__));
  55          $module_name = eregi_replace("_", " ", $module_name);
  56          echo "<html>\n" ."<body bgcolor=\"#F6F6EB\" link=\"#363636\" alink=\"#363636\" vlink=\"#363636\">\n" ."<title>$module_name: Copyright Information</title>\n" ."<font size=\"2\" color=\"#363636\" face=\"Verdana, Helvetica\">\n" ."<center><b>Module Copyright &copy; Information</b><br>" ."$module_name module for <a href=\"http://phpnuke.org\" target=\"new\">PHP-Nuke</a><br><br></center>\n" ."<img src=\"../../images/arrow.gif\" border=\"0\">&nbsp;<b>Module's Name:</b> $module_name<br>\n" ."<img src=\"../../images/arrow.gif\" border=\"0\">&nbsp;<b>Module's Version:</b> $module_version<br>\n" ."<img src=\"../../images/arrow.gif\" border=\"0\">&nbsp;<b>Module's Description:</b> $module_description<br>\n" ."<img src=\"../../images/arrow.gif\" border=\"0\">&nbsp;<b>License:</b> $license<br>\n" ."<img src=\"../../images/arrow.gif\" border=\"0\">&nbsp;<b>Author's Name:</b> $author_name<br>\n" ."<img src=\"../../images/arrow.gif\" border=\"0\">&nbsp;<b>Author's Email:</b> $author_email<br><br>\n" ."<center>[ <a href=\"$author_homepage\" target=\"new\">Author's HomePage</a> | <a href=\"$download_location\" target=\"new\">Module's Download</a> | <a href=\"javascript:void(0)\" onClick=javascript:self.close()>Close</a> ]</center>\n" ."</font>\n" ."</body>\n" ."</html>";
  57      }
  58      show_copyright();
  59  
  60  ?>


Généré le : Sun Apr 1 11:11:59 2007 par Balluche grâce à PHPXref 0.7