print "<form name='delete_release' method=post action='{$delete_page}'>" . NEWLINE;
                print "<input type='submit' name='remove_man_doc_type_from_project' value='" . lang_get('delete') . "' class='page-numbers'>" . NEWLINE;
                print "<input type='hidden' name='r_page' value='{$redirect_url}#test_doc_type'>" . NEWLINE;
                print "<input type='hidden' name='f' value='remove_man_doc_type_from_project'>" . NEWLINE;
                print "<input type='hidden' name='id' value='{$id}'>" . NEWLINE;
                print "<input type='hidden' name='project_id' value='{$selected_project_id}'>" . NEWLINE;
                print "<input type='hidden' name='msg' value='" . DEL_TEST_DOC_TYPE_FROM_PROJECT . "'>" . NEWLINE;
                print "</form>" . NEWLINE;
                print "</td>" . NEWLINE;
            }
            print "</tr>" . NEWLINE;
        }
        print "</table>" . NEWLINE;
    } else {
        html_no_records_found_message(lang_get('no_testdoctype'));
    }
}
print "</div>" . NEWLINE;
html_print_footer();
# ------------------------------------
# $Log: project_manage_testdoctype_page.php,v $
# Revision 1.3  2006/08/05 22:08:36  gth2
# adding NEWLINE constant to support multiple OS newline chars - gth
#
# Revision 1.2  2006/02/24 11:37:48  gth2
# update to div - class=div-c not working in firefox - gth
#
# Revision 1.1.1.1  2005/11/30 23:00:57  gth2
# importing initial version - gth
#
# ------------------------------------
Ejemplo n.º 2
0
function html_print_operation_successful($page_title, $redirect_page)
{
    global $db;
    $s_project_properties = session_get_project_properties();
    $project_name = $s_project_properties['project_name'];
    html_window_title();
    html_print_body();
    html_page_title($project_name . " - " . lang_get($page_title));
    html_page_header($db, $project_name);
    html_print_menu();
    print "<div class=operation-successful>" . lang_get('operation_successful') . "</div>";
    html_print_footer();
    html_redirect($redirect_page);
    exit;
}