c47c63d8e242682ae1c50a61a38f62ae2b21b8e9
[atutor.git] / mods / wiki / plugins / interwiki / walking.php
1 <?php
2
3 /*
4    Provides WikiFeatures:InterMapWalking, which will automatically
5    redirect users to foreign Wikis, if an InterMap page name is
6    detected.
7    WARNING: This is already a core feature, don't load this plugin!
8 */
9
10
11 $ewiki_plugins["handler"][] = "ewiki_intermap_walking";
12
13
14 function ewiki_intermap_walking($id, &$data, $action) {
15    if (empty($data["version"]) && ($href = ewiki_interwiki($id, $uu))) {
16       header("Location: $href");
17       return("<a href=\"$href\">$href</a>");
18    }
19 }
20
21
22 ?>