Subversion Repositories Applications.papyrus

Rev

Rev 1688 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
831 florian 1
<?php
2
 
3
// This module demonstrates the use of multiple hooks in a single module.
4
 
5
if(!defined("PHORUM")) return;
6
 
7
function phorum_mod_example_multiplehooks_after_header () {
8
    print "Hello";
9
}
10
 
11
function phorum_mod_example_multiplehooks_before_footer () {
12
    print "World!";
13
}
14
 
15
?>