removed mods directory from the ATutor codebase
[atutor.git] / mods / wiki / plugins / page / interwikimap.php
diff --git a/mods/wiki/plugins/page/interwikimap.php b/mods/wiki/plugins/page/interwikimap.php
deleted file mode 100644 (file)
index 3b4af8e..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-# prints out the list of known InterWiki:ShortCuts
-# (using a <dl>)
-
-
-$ewiki_plugins["page"]["InterWikiMap"] = "ewiki_page_interwikimap";
-
-
-function ewiki_page_interwikimap($id, $data, $action) {
-
-   global $ewiki_config;
-
-   $o = ewiki_make_title($id, $id, 1);
-
-   $o .= '<dl id="InterWikiMap">'."\n";
-   foreach ($ewiki_config["interwiki"] as $shortcut=>$url) {
-      $o .= "<dt>$shortcut:</dt>\n".
-           "   <dd><a href=\"$url\">$url</a></dd>\n";
-   }
-   $o .= "</dl>";
-   
-   return($o);
-}
-
-?>
\ No newline at end of file