Moving the old code aside into the archive as i begin a new
[glcas.git] / lib / plugins / aptproxy.php
diff --git a/lib/plugins/aptproxy.php b/lib/plugins/aptproxy.php
deleted file mode 100644 (file)
index 161ade2..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-global $BASE_URLS;
-
-$BASE_URLS["apc"]["base"] = "apc"; // ap for apt-proxy
-$BASE_URLS["apc"]["function"] = "ap_pageBuilderCtl"; // the page builder function for us
-$BASE_URLS["apr"]["base"] = "apr"; // ap for apt-proxy
-$BASE_URLS["apr"]["function"] = "ap_pageBuilderPrx"; // the page builder function for us
-
-$MENU_ITEMS["ap"]["title"] = "APT Proxy";
-$MENU_ITEMS["ap"]["link"] = "/apc/proxycontrol";
-
-function ap_pageBuilderCtl()
-{
-       $calls["needs_base_page"] = true;
-       $calls["content_pane_function"] = "ap_contentPane";
-       $calls["left_menu_function"] = "ap_leftMenu";
-       
-       return $calls;
-}
-
-function ap_contentPane()
-{
-       echo "i am a ap content pane<br>";
-}
-
-function ap_leftMenu()
-{
-       echo "i am a ap leftmenu";
-}
-
-
-?>
\ No newline at end of file