home *** CD-ROM | disk | FTP | other *** search
- <?php
-
- if (!eregi("modules.php", $PHP_SELF)) {
- die ("You can't access this file directly...");
- }
-
- $module_name = basename(dirname(__FILE__));
-
- $index = 0;
-
- function f2one() {
- global $module_name;
- include("header.php");
- OpenTable();
- echo "Addon Sample File (f2.php) function \"f2one\"<br><br>";
- echo "<ul>";
- echo "<li><a href=\"modules.php?name=$module_name&file=f2&func=f2go\">f2.php Main</a>";
- echo "<li><a href=\"modules.php?name=$module_name&file=index\">Go to index.php</a>";
- echo "</ul>";
- CloseTable();
- include("footer.php");
-
- }
-
- function f2go() {
- global $module_name;
- include("header.php");
- OpenTable();
- echo "Addon Sample File (f2.php)<br>";
- echo "<ul>";
- echo "<li><a href=\"modules.php?name=$module_name&file=f2&func=f2one\">Function f2one</a>";
- echo "<li><a href=\"modules.php?name=$module_name&file=index&func=dos\">Go to index.php</a>";
- echo "</ul>";
- echo "As you can see now, this page doesn't show the Right Blocks, this is because at the begining "
- ."of this file we set \$index variable to \"0\"";
- CloseTable();
- include("footer.php");
- }
-
- switch($func) {
-
- default:
- f2go();
- break;
-
- case "f2one":
- f2one();
- break;
-
- }
-
- ?>