| Kwiki documentation | Contained in the Kwiki distribution. |
Kwiki::Toolbar - Kwiki Toolbar Plugin
Brian Ingerson <INGY@cpan.org>
Copyright (c) 2004. Brian Ingerson. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://www.perl.com/perl/misc/Artistic.html
| Kwiki documentation | Contained in the Kwiki distribution. |
package Kwiki::Toolbar; use Kwiki::Pane -Base; const class_id => 'toolbar'; const pane_template => 'toolbar_pane.html'; const css_file => 'toolbar.css'; const config_file => 'toolbar.yaml'; sub order { @{$self->config->toolbar_order}; } __DATA__
__template/tt2/toolbar_pane.html__ <div class="toolbar"> [% units.join(' ') %] </div> __config/toolbar.yaml__ toolbar_order: - search_box - home_button - recent_changes_button - user_preferences_button - new_page_button - edit_button - revisions_button - revisions_controls __css/toolbar.css__ div.toolbar { }