get_string('theme', 'default'); //$data_href = get_base_href(); $contact_link = contact_link(); $header_html = $page->get_all_html_headers(); $left_block_html = ""; $main_block_html = ""; $sub_block_html = ""; foreach($page->blocks as $block) { switch($block->section) { case "left": $left_block_html .= $block->get_html(true); break; case "main": $main_block_html .= $block->get_html(false); break; case "subheading": $sub_block_html .= $block->get_html(false); break; default: print "

error: {$block->header} using an unknown section ({$block->section})"; break; } } $debug = get_debug_info(); $contact = empty($contact_link) ? "" : "
Contact"; $wrapper = ""; if(strlen($page->heading) > 100) { $wrapper = ' style="height: 3em; overflow: auto;"'; } $flash = $page->get_cookie("flash_message"); $flash_html = ""; if($flash) { $flash_html = "".nl2br(html_escape($flash))." [X]"; } print << {$page->title} $header_html

{$page->heading} $sub_block_html
$flash_html $main_block_html
EOD; } }