$left_title
EOQ; return $the_header; } /** * Create HTML to display formatted form footer of form in the left pane. */ function get_left_form_footer() { return ("
\n"); } /** * Create HTML to display formatted form title. * param $form_title - the string to display as the title in the header * param $other_text - the string to next to the title. Typically used for form buttons. * param $show_help - the boolean which determines if the print and help links are shown. */ function get_form_header ($form_title, $other_text, $show_help) { global $image_path; global $app_strings; $the_form = <<
$form_title 
EOQ; if ($other_text) { $the_form .= "\n"; $the_form .= "$other_text\n"; } else { $the_form .= "\n"; } if ($show_help==true) { $the_form .= "[ ".$app_strings['LNK_PRINT']." ]\n"; $the_form .= "[ ".$app_strings['LNK_HELP']." ]\n"; } $the_form .= << EOQ; return $the_form; } /** * Create HTML to display formatted form footer */ function get_form_footer() { } /** * Create HTML to display formatted module title. * param $module - the string to next to the title. Typically used for form buttons. * param $module_title - the string to display as the module title * param $show_help - the boolean which determines if the print and help links are shown. */ function get_module_title ($module, $module_title, $show_help) { global $image_path; global $app_strings; $the_title = "\n"; $the_title .= ""; if ($show_help) { // $the_title .= "\n"; // $the_title .= "\n"; } else { $the_title .= "\n"; $the_title .= "\n"; } $the_title .= ""; $the_title .= "
\n"; $the_title .= "\n"; $the_title .= "
\n"; if (is_file($image_path.$module.".gif")) { $the_title .= "\n"; } $the_title .= " "; $the_title .= $module_title."
".$app_strings['LNK_PRINT']."   ".$app_strings['LNK_HELP']."  
\n"; return $the_title; } /** * Create a header for a popup. * param $theme - The name of the current theme */ function insert_popup_header($theme) { global $app_strings, $default_charset; $charset = $default_charset; if(isset($app_strings['LBL_CHARSET'])) { $charset = $app_strings['LBL_CHARSET']; } $out = ''; $out .= ''; $out .= ''; $out .= ''.$app_strings['LBL_BROWSER_TITLE'].''; $out .= ''; $out .= ''; echo $out; } /** * Create a footer for a popup. */ function insert_popup_footer() { echo <<< EOQ EOQ; } ?>