View Single Post
  #3 (permalink)  
Old 07-11-2004, 10:49 PM
MurphDog MurphDog is offline
Junior Member
 
Join Date: Mar 2003
Location: Austin, TX
Posts: 130
Send a message via ICQ to MurphDog Send a message via AIM to MurphDog Send a message via MSN to MurphDog Send a message via Yahoo to MurphDog
Here is the code that I have been using. It includes what you mentioned.
Code:
<?php 
/*************************************************************************/ 
/* PHP-NUKE: Web Portal System                            */ 
/* ===========================                               */ 
/*                                              */ 
/* PHP-Nuke-Genealogy module for PHP-Nuke                            */ 
/*                                     */ 
/* Copyright (c) 2004 index.php                         */ 
/* by Murphy Kling                              */ 
/* http://www.murphykling.com                         */ 
/*                                     */ 
/* See licence.html for the Licence of the other files                   */ 
/* distributed together with this index.php file.                      */ 
/*                                     */ 
/* This program is free software. You can redistribute it and/or modify             */ 
/* it under the terms of the GNU General Public License as published by          */ 
/* the Free Software Foundation; either version 2 of the License.             */ 
/*************************************************************************/ 
if (!eregi("modules.php", $PHP_SELF)) { 
die ("You can't access this file directly..."); 
} $index = 0; // 0 : do not show right blocks - 1:show right blocks 
require_once("mainfile.php"); 
$module_name = basename(dirname(__FILE__)); 
include("header.php"); 
OpenTable(); 
?> 
<table width="100%" border="0" cellspacing="0" cellpadding="5"> 
  <tr> 
    <td> 
    
        <table width="100%" border="0" cellspacing="0" cellpadding="0"> 
<tr> 
   <td width="50" align="right" valign="bottom">[img]../../themes/Helius/images/top_left.gif[/img]</td> 
   <td width="100%" align="center" valign="middle" background="../../themes/Helius/images/top_center.gif"></td> 
   <td width="50" align="left" valign="bottom">[img]../../themes/Helius/images/top_right.gif[/img]</td> 
</tr> 
</table> 

    <table width="100%" border="0" cellspacing="0" cellpadding="0"> 
     <tr> 
     <td bgcolor="#006699"> 
     <table width="100%" border="0" cellspacing="0" cellpadding="0"> 
      <tr> 
       <td bgcolor="#525E6E"> 
       <table width="100%" border="0" cellspacing="1" cellpadding="0"> 
        <tr> 
         <td bgcolor="#EAEDF4"> 
         <table width="100%" border="0" cellspacing="0" cellpadding="4"> 
          <tr> 
           <td> 
<form name="InPageForm"> 
                                <div align="center"> 
                                  <input type=button value="Find Person"         onClick="document.InPageTree.find()"> 
                                  <input type=button value="Zoom In"             onClick="document.InPageTree.zoomIn()"> 
                                  <input type=button value="Zoom Out"            onClick="document.InPageTree.zoomOut()"> 
                                  <input type=button value="Center Tree (home)"  onClick="document.InPageTree.home()"> 
                                  <input type=button value="Make Primary"       onClick="document.InPageTree.setPrimary()"> 
                                  <input type=button value="Back"                onClick="document.InPageTree.back()"> 
                                  <input type=button value="Forward"             onClick="document.InPageTree.forward()"> 
                                </div> 
                              </form> 
                              <div align="center"> 
                                <APPLET code     = "zaluc.geneo.Geneo.class" 
        codebase = "http://familytreemaker.genealogy.com/java/geneo2" 
        archive  = "geneo.jar" 
        name     = "InPageTree" 
        width    = "600" 
        height   = "360"> 
                                  <PARAM name="Source"          value="http://familytreemaker.genealogy.com/users/k/l/i/Murphy-L-Kling/TREE/0001tree.gen"> 
                                  <PARAM name="Width"           value="600"> 
                                  <PARAM name="Height"          value="360"> 
                                  <PARAM name="Background"      value="006699"> 
                                  <PARAM name="BkgImgLayout"    value="1"> 
                                  <PARAM name="BorderWidth"     value="2"> 
                                  <PARAM name="PBoxBorderWidth" value="1"> 
                                  <PARAM name="PeopleBoxBkg"    value="EAEDF4"> 
                                  <PARAM name="HtmlTarget"       value="_blank"> 
                                  <PARAM name="EmbedInPage"     value="true"> 
                                  <PARAM name="HelpUrl"       value="http://www.theklings.net/modules.php?name=FAQ&myfaq=yes&id_cat=1&categories=InterneTree+Help"> 
                                </APPLET> 
                              </div></td> 
          </tr> 
         </table> 
        </td> 
      </tr> 
    </table> 
   </td> 
   </tr> 
  </table> 
  </td> 
  </tr> 
</table> 

<table border="0" cellspacing="0" cellpadding="0" width="100%"> 
<tr> 
   <td width="40" align="right" valign="top">[img]../../themes/Helius/forums/images/bottom_left.gif[/img]</td> 
   <td width="100%" background="../../themes/Helius/forums/images/bottom_center.gif">[img]../../themes/Helius/forums/images/spacer.gif[/img]</td> 
   <td width="40" align="left" valign="top">[img]../../themes/Helius/forums/images/bottom_right.gif[/img]</td> 
</tr> 
</table> 

</td> 
  </tr> 
</table> 

<?php 
CloseTable(); 
include("footer.php"); 
?>
Reply With Quote