added more framework bits,
[gwvp.git] / gwvplib / gwvpsetup.php
1 <?php
2 $CALL_ME_FUNCTIONS["setup"] = "gwvp_SetupCall";
3
4
5 function gwvp_SetupCall()
6 {
7         if(isset($_REQUEST["q"])) {
8                 $query = $_REQUEST["q"];
9                 if($query == "postsetup") return "gwvp_PostSetup";
10                 else return false;
11         }
12         
13         return false;
14         
15 }
16
17 function gwvp_PostSetup()
18 {
19         gwvp_goMainPage("gwvp_PostSetupPageBody");
20 }
21
22 function gwvp_PostSetupPageBody()
23 {
24         echo "GWVP Is now setup, login at the top of the page and you should in control!";
25 }
26
27 // TODO: need to do this bit
28 function gwvp_issetup()
29 {
30         return true;
31 }
32
33
34 function gwvp_goSetup()
35 {
36         
37 }
38 ?>