WikiPlugins? allow one to easily add new types of dynamic content (as well as other functionality) to wiki pages within PhpWiki. In this very wiki, the RecentChanges, BackLinks, LikePages and DebugInfo pages are all implemented using plugins.
<?plugin BackLinks?>
into a regular wiki-page. That particular example produces as list of pages which link to the current page. Here it is:
5 pages link to WikiPlugin:
(This is great for Category and Topic pages. You can use this to get an automatic in-line listing of pages in the Category or Topic.)
Plugins can take certain named arguments (most do). The values of these arguments can be determined four different ways. In order of precedence:
The plugin invocation can specify the value for an argument, like so:
<?plugin BackLinks page=OtherPage ?>
The argument can be specified via an HTTP query argument. This doesn't happen (is not allowed) unless the argument is mentioned in the plugin invocation:
<?plugin BackLinks page ?>
Default values specified in the plugin invocation:
<?plugin BackLinks page||=OtherPage ?>
Some of these plugins are documented on their respective pages. In other cases, look at the page source to see how to use it.
5 pages link to WikiPlugin: