Documentation is available at index.php
- <?php
- ################################################################
- # This file is part of SlidingDoors #
- # Copyright 2001-2002. Eric D. Nielsen, All rights reserverd #
- # SlidingDoors is availible for license under the GPL, see #
- # the COPYING file in the root directory of the install for #
- # the full terms of the GPL. #
- # #
- # File: group.php #
- # Author: Eric D. Nielsen #
- # Description: This page allows a team to retrieve their #
- # current registration summary, invoice, and #
- # competition results after the comp. #
- # Internal Links: group-check.php #
- # External Links: SlidingDoors information page (footer) #
- # Comp-in-a-box information page(footer) #
- # OpenImpetus information page (footer) #
- # Change Log: 11/06/01 -- created -- edn #
- ################################################################
- # Do not remove the following line
- include "include_others.inc";
- session_start();
- unset($formVars);
- session_unregister($formVars);
- unset($addType);
- session_unregister($addType);
- $org = $HTTP_POST_VARS["Affil"];
- if ($org=="") $org=$HTTP_SESSION_VARS["org"];
- if ($org=="NewAffil")
- {
- # errorPage("index.php","selecting NewAffil","Feature Disabled","This feature has been disabled temporarily due to myriads of bugs. This is not a true bug, please do not email us (in spite of what the footer below says.",FALSE);
- $affil=0;
- session_register("affil");
- localRedirect("Location: $baseURL/group/group-setup.php");
- exit;
- }
- $display = new HTMLDisplay($db);
- $page = $display->beginPage();
- $page.= $display->instructionBox("<a name=\"top\">Affiliation Summary</a>",
- "This page allows captains/studio
- representative and other similar affiliation organizers to quickly review the
- status of their members' registrations. Registered, team authorized individuals may update most of the information here for their team.
- <p>
- Relevant Links:
- <ul>
- <li><a href=\"group-setup.php\">Update Information</a></li>
- <li><a href=\"$CIB_SECURE_URL/accounts/new_account.php\">Create a CompInaBox Account</a></li>
- <li><a href=\"$CIB_SECURE_URL/accounts/profile_management.php\">Request Team Authorization</a></li></ul>
- ");
- $affil = new RegOrg($db,0);
- $affil->setID($org);
- $affil->retrieve();
- $box = "<center>".$display->teamNavBar(array("Top","Login","TeamMatch","Invoice","Results"),"login")."</center><br>";
- $box .= $display->teamInfoLoginBar($affil);
- $page.= $display->textBox($box,"95%","Org Login in Box");
- $text = "<center>".$display->teamNavBar(array("Top","Login","TeamMatch","Invoice","Results"),"teammatch")."</center><br>";
- $text.= $display->teamMatchSummary($affil);
- $page .= $display->textBox($text);
- $text= "<center>".$display->teamNavBar(array("Top","Login","TeamMatch","Invoice","Results"),"invoice")."</center><br>";
- $text.= $display->teamRegistration($affil);
- $page .= $display->textBox($text);
- $text = "<center>".$display->teamNavBar(array("Top","Login","TeamMatch","Invoice","Results"),"results")."</center><br>";
- $text .= $display->teamResults($affil);
- $page .= $display->textBox($text);
- $page .= $display->sectionBreak();
- $page .= $display->compinaboxBox();
- $page .= $display->endPage();
- clean_up_session();
- session_register("affil");
- echo $page;
- ?>
Documentation generated on Tue, 25 Apr 2006 13:03:16 -0400 by phpDocumentor 1.3.0RC3