Merge remote branch 'intrigeri/po'
[ikiwiki.git] / IkiWiki / Plugin / skeleton.pm.example
index c3a3b0c01eabcb1001257a6f2b4e407fe184db3b..341d678679b65706b6189d509d06e0fd77f07772 100644 (file)
@@ -41,6 +41,7 @@ sub import {
        hook(type => "rename", id => "skeleton", call => \&rename);
        hook(type => "savestate", id => "skeleton", call => \&savestate);
        hook(type => "genwrapper", id => "skeleton", call => \&genwrapper);
+       hook(type => "disable", id => "skeleton", call => \&disable);
 }
 
 sub getopt () {
@@ -254,4 +255,8 @@ sub genwrapper () {
        debug("skeleton plugin running in genwrapper");
 }
 
+sub disable () {
+       debug("skeleton plugin running in disable");
+}
+
 1