Simple Code sample how to expand the left box?
Hello!
I am just looking for a simple code example to add some content like fixed links or some text / images to the left side - as a plugin
Thanks!
0
This discussion has been closed.
Comments
// Put the ListName into a variable for the sake of brevity $ListName = $Context->GetDefinition("CoolLinks"); // Add a link to google $Panel->AddListItem($ListName, $Context->GetDefinition("Google"), "http://www.google.com"); // Add a link to Kottke.org (*tip-hat at Kottke for linking us*) $Panel->AddListItem($ListName, $Context->GetDefinition("Kottke"), "http://www.kottke.org", "ROCK!");makes :Now - just change the links and names to whatever you so desire.
M.
Keep them straight, idiot!
(this disclaimer is to let everyone know I'm kidding..)
$MyPicture = "<img src=\"path/to/image.gif\" />"; $Panel->AddString($MyPicture);