changed git call from https to git readonly
[atutor.git] / mods / wiki / plugins / aview / fpage_copyright.php
1 <?php
2 /*
3     Generates a copyright notice.
4     
5     Created by: Jeffrey Engleman
6     
7 */
8
9 $ewiki_t["en"]["ALLRIGHTSRESERVED"] = "all rights reserved.";
10
11 $ewiki_plugins["page_final"][] = "ewiki_page_final_copyright";
12
13 function ewiki_page_final_copyright(&$o, &$id, &$data, &$action){
14     if(isset($data["lastmodified"])){
15        $o.="<div id=\"copyright\">\nCopyright &copy; ".strftime("%B %d, %Y",$data["lastmodified"])." ".ewiki_t("ALLRIGHTSRESERVED")."\n</div>";
16     }else {
17        $o.="<div id=\"copyright\">\nCopyright &copy; ".strftime("2004")." ".ewiki_t("ALLRIGHTSRESERVED")."\n</div>";
18     }
19 }
20
21 ?>