changed git call from https to git readonly
[atutor.git] / mods / wiki / plugins / aview / fpage_logo.php
1 <?php
2 /*
3     Appends an image to the output string.
4     
5     Created by: Jeffrey Engleman
6     
7 */
8 //$ewiki_t["en"]["LOGOPATH"] = "path/to/logo.gif";
9 //$ewiki_t["en"]["LOGOALT"] = "Alt Logo Name";
10
11 $ewiki_plugins["page_final"][] = "ewiki_page_final_logo";
12
13 function ewiki_page_final_logo(&$o, &$id, &$data, &$action){
14   $o.="<div id=\"bottomlogo\">\n<img src=\"".ewiki_t("LOGOPATH")."\" alt=\"".ewiki_t("LOGOALT")."\"/>\n</div>\n";
15 }
16
17 ?>