]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/skeleton.pm.example
po plugin: added [[!translatable]] directive
[git.ikiwiki.info.git] / IkiWiki / Plugin / skeleton.pm.example
index af22b340659bd72067c1cd552e69c221dd7ab364..ecf2a2407ca135d91503b4ebe3ed27d7bebf89f3 100644 (file)
@@ -35,6 +35,7 @@ sub import { #{{{
        hook(type => "formbuilder", id => "skeleton", call => \&formbuilder);
        hook(type => "savestate", id => "skeleton", call => \&savestate);
        hook(type => "targetpage", id => "skeleton", call => \&targetpage);
+       hook(type => "urlpath", id => "skeleton", call => \&urlpath);
 } # }}}
 
 sub getopt () { #{{{
@@ -209,4 +210,8 @@ sub targetpage () { #{{{
        debug("skeleton plugin running in targetpage");
 } #}}}
 
+sub urlpath () { #{{{
+       debug("skeleton plugin running in urlpath");
+} #}}}
+
 1