1/**
2 *   Plugin; Credits
3 *   Author: Myron Turner
4 *   turnermm03@shaw.ca
5*/
6
7
8
9Credits is a highly configurable plugin for displaying credits for DokuWiki plugins.  Using the configuration manager, all of the CSS settings can be changed, as well as the title (Plugins) and subtitle (Credits) strings.
10
11The syntax is one of the following:
12
13      <<CREDITS:>>
14      <<CREDITS:~nodesc~>>
15      <<CREDITS:user_defined_function>>
16
17
18The first form will use the default rendering, subject to any changes in settings made in the Configuration Manager.
19
20The second form will turn off the printing of the plugin descriptions. This is the desc field returned by the plugin's getInfo() method. The descriptions can also be turned off in the Configuration Manager.
21
22The third form will invoke a user-defined function for formatting the the output.
23
24There is a sample user-defined function in the syntax.php file:
25     function alt_credits(&$renderer,$info)
26
27$info has access to all of the fields returned by the getInfo() function of each plugin; alt_credits()
28will print out the following information for each plugin on your system:
29
30User Manager
31author: Chris Smith
32email: email@address.com;
33date: 2005-11-24
34name: User Manager
35desc: Manage users
36url: http://wiki.splitbrain.org/plugin:user_manager
37
38