From: moquist Date: Thu, 10 Aug 2006 05:10:00 +0000 (+0000) Subject: Added $return=false parameter to print_footer() using output control functions X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=469b6501197bbffc84736e01962a742abd0ade79;p=moodle.git Added $return=false parameter to print_footer() using output control functions to capture include() of themed footer HTML. --- diff --git a/lib/weblib.php b/lib/weblib.php index bf1af71a2f..1faac597cb 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -2147,7 +2147,7 @@ function print_header_simple($title='', $heading='', $navigation='', $focus='', * @param ? $usercourse ? * @todo Finish documenting this function */ -function print_footer($course=NULL, $usercourse=NULL) { +function print_footer($course=NULL, $usercourse=NULL, $return=false) { global $USER, $CFG, $THEME; /// Course links @@ -2210,8 +2210,16 @@ function print_footer($course=NULL, $usercourse=NULL) { /// Include the actual footer file + ob_start(); include ($CFG->themedir.current_theme().'/footer.html'); + $output = ob_get_contents(); + ob_end_clean(); + if ($return) { + return $output; + } else { + echo $output; + } } /**