Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:<?php
/*
Extension Name: Custom HTML Message in Panel (HEREDOC version)
Extension Url: http://lussumo.com/docs/
Description: Adds Custon HTML to the panel
Version: 1.0
Author: BJ
Author Url: http://lussumo.com/docs/
*/
if(in_array($Context->SelfUrl, array("index.php"))) {
$Panel->AddList("htmlblock");
$HTMLBlockTitle = "OMGWTF!";
$HTMLToDisplay = <<< ENDHTML
<p>A BIG FAT BLOCK OF AD CODE COULD BE HERE!</p>
ENDHTML;
$Panel->AddListItem($HTMLBlockTitle,"</a>$HTMLToDisplay<a>","","",$Position="1",$Attributes="");
}
?>
$Panel->AddString("<marquee>Weee!!!</marquee>");
$Head->AddStyleSheet($StyleSheetLocation);
1 to 21 of 21