add new hook to skeleton

master
Joey Hess 2009-01-16 21:07:40 -05:00
parent f7b2cfcf50
commit ae20879e84
1 changed files with 7 additions and 0 deletions

View File

@ -30,6 +30,7 @@ sub import {
hook(type => "auth", id => "skeleton", call => \&auth);
hook(type => "sessioncgi", id => "skeleton", call => \&sessioncgi);
hook(type => "canedit", id => "skeleton", call => \&canedit);
hook(type => "checkcontent", id => "skeleton", call => \&checkcontent);
hook(type => "editcontent", id => "skeleton", call => \&editcontent);
hook(type => "formbuilder_setup", id => "skeleton", call => \&formbuilder_setup);
hook(type => "formbuilder", id => "skeleton", call => \&formbuilder);
@ -180,6 +181,12 @@ sub canedit ($$$) {
debug("skeleton plugin running in canedit");
}
sub checkcontent (@) {
my %params=@_;
debug("skeleton plugin running in checkcontent");
}
sub editcontent ($$$) {
my %params=@_;