Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 830 → Rev 831

/trunk/client/phorum/bibliotheque/phorum/docs/example_mods/example_multiplehooks/example_multiplehooks.php
New file
0,0 → 1,15
<?php
 
// This module demonstrates the use of multiple hooks in a single module.
 
if(!defined("PHORUM")) return;
 
function phorum_mod_example_multiplehooks_after_header () {
print "Hello";
}
 
function phorum_mod_example_multiplehooks_before_footer () {
print "World!";
}
 
?>