\n"; else echo "
\n"; echo ""; } //--------------------------------------------------------------------------------- function end_form($breaks=0) { if ($breaks) br($breaks); echo "
\n"; } function start_table($extra="", $padding='2', $spacing='0') { echo "
\n"; } function end_table($breaks=0) { echo "
\n"; if ($breaks) br($breaks); } function meta_forward($forward_to, $params="") { echo "\n"; echo "

" . _("You should automatically be forwarded."); echo " " . _("If this does not happen") . " " . "" . _("click here") . " " . _("to continue") . ".

\n"; exit; } //----------------------------------------------------------------------------------- function hyperlink_back($center=true) { echo get_js_go_back(); if ($center) echo "
"; echo ""._("Back")."\n"; if ($center) echo "
"; echo "
"; } function hyperlink_no_params($target, $label, $center=true) { if ($center) echo "
"; echo "$label\n"; if ($center) echo "
"; } function hyperlink_no_params_td($target, $label) { echo ""; hyperlink_no_params($target, $label); echo "\n"; } //----------------------------------------------------------------------------------- function hyperlink_params($target, $label, $params, $center=true) { if ($center) echo "
"; echo "$label\n"; if ($center) echo "
"; } function hyperlink_params_td($target, $label, $params) { echo ""; hyperlink_params($target, $label, $params); echo "\n"; } //----------------------------------------------------------------------------------- function hyperlink_params_separate($target, $label, $params, $center=false) { if ($center) echo "
"; echo "$label\n"; if ($center) echo "
"; } function hyperlink_params_separate_td($target, $label, $params) { echo ""; hyperlink_params_separate($target, $label, $params); echo "\n"; } //-------------------------------------------------------------------------------------------------- function alt_table_row_color(&$k) { if ($k == 1) { echo "\n"; $k = 0; } else { echo "\n"; $k++; } } function table_section_title($msg) { echo "$msg\n"; } function table_header($labels) { start_row(); foreach ($labels as $label) labelheader_cell($label); end_row(); } function edit_link_cell($param) { label_cell("" . _("Edit") . "", "nowrap"); } function delete_link_cell($param) { label_cell("" . _("Delete") . "", "nowrap"); } function edit_button_cell($name, $value) { label_cell("\n"); } //----------------------------------------------------------------------------------- function start_row($param="") { if ($param != "") echo "\n"; else echo "\n"; } function end_row() { echo "\n"; } function br($num=1) { for ($i = 0; $i < $num; $i++) echo "
"; } ?>