diff options
Diffstat (limited to 'examples/root.control.php')
-rw-r--r-- | examples/root.control.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/root.control.php b/examples/root.control.php deleted file mode 100644 index 614ab33..0000000 --- a/examples/root.control.php +++ /dev/null @@ -1,14 +0,0 @@ - case "deleteaccount": $ctrl = new Deleteacct(); break; - default: - /* Check if arg is an object guid */ - $obj = new DBObject(); - - if ($obj->isGUID($argv[0])) - { - $ctrl = new Obj(); - break; - } - - /* No page to show for requested path */ - throw new Exception("The requested path is not valid."); - break; |