1<?php
2/**
3 * Example Sidebar of the sidebarng plugin
4 *
5 * @author Michael Klier <chi@chimeric.de>
6 */
7
8// This is a simple example of a custom sidebar.
9// You can use custom sidebars to output anything you want.
10// Simple Text:
11print 'Hello World!';
12
13// wiki pages
14print p_wiki_xhtml('start');
15
16// the output of dokuwiki plugins (not, using p_render() is an expensive task
17// as it instantiates a new DokuWiki renderer
18print p_render('xhtml', p_get_instructions('~~INFO:syntaxplugins~~'), $info);
19
20// Or just plain HTML
21?>
22<h1>A H1 Headline</h1>
23