A small module that allows you to create/edit/remove notes.
Add the following in your template file (body.cgi or index.cgi):
&foreign_require("webmin-notes");
@notes = &webmin_notes::list_notes();
foreach my $n (@notes) {
#now you have access to each note
#Available methods: status, style, title, content
}
This example fits authentic-theme (https://github.com/virtualmin/authentic-theme).
Edit /usr/share/webmin/authentic-theme/sysinfo.cgi
and add the following code on line 22
:
&foreign_require("webmin-notes", "webmin-notes-lib.pl");
my @notes = &webmin_notes::list_notes();
foreach my $n (@notes) {
if ($n->{'status'} == 1) {
print '<div class="alert alert-'. html_escape($n->{'style'}) .'" role="alert"><b>'. html_escape($n->{'title'}) .'</b> '. html_escape($n->{'content'}) . "</div>\n";
}
}
This example fits @winfuture Bootstrap theme (http://theme.winfuture.it/).
Edit the index.cgi
of the theme and add the following code:
&foreign_require("webmin-notes");
@notes = &webmin_notes::list_notes();
foreach my $n (@notes) {
if ($n->{'status'} == 1) {
print '<div class="alert alert-'. html_escape($n->{'style'}) .'" role="alert"><b>'. html_escape($n->{'title'}) .'</b> '. html_escape($n->{'content'}) . "</div>\n";
}
}
::list_notes()
::create_note($note)
::modify_note($note)
::delete_note($note)
| Key | Value
| ------------- |:-------------:
| status | 0 = disabled / 1 = enabled
| style | warning, info, danger, success
| title | note-title
| content | note-content
http://www.webmin.com/cgi-bin/search_third.cgi?search=Webmin-Notes