removed mods directory from the ATutor codebase
[atutor.git] / mods / wiki / plugins / aview / fpage_copyright.php
diff --git a/mods/wiki/plugins/aview/fpage_copyright.php b/mods/wiki/plugins/aview/fpage_copyright.php
deleted file mode 100644 (file)
index 3cf4be4..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-/*
-    Generates a copyright notice.
-    
-    Created by: Jeffrey Engleman
-    
-*/
-
-$ewiki_t["en"]["ALLRIGHTSRESERVED"] = "all rights reserved.";
-
-$ewiki_plugins["page_final"][] = "ewiki_page_final_copyright";
-
-function ewiki_page_final_copyright(&$o, &$id, &$data, &$action){
-    if(isset($data["lastmodified"])){
-       $o.="<div id=\"copyright\">\nCopyright &copy; ".strftime("%B %d, %Y",$data["lastmodified"])." ".ewiki_t("ALLRIGHTSRESERVED")."\n</div>";
-    }else {
-       $o.="<div id=\"copyright\">\nCopyright &copy; ".strftime("2004")." ".ewiki_t("ALLRIGHTSRESERVED")."\n</div>";
-    }
-}
-
-?>
\ No newline at end of file