<?php  // $Id$
    if (!isset($sortorder)) {
        $sortorder = '';
    }    
    if (!isset($sortkey)) {
        $sortkey = '';
    }
    echo '<p align="center">';
    $glossary_tCFG->TabTableBGColor = $THEME->cellheading;
    $glossary_tCFG->ActiveTabColor = $THEME->cellheading;
    $glossary_tCFG->InactiveTabColor = $THEME->cellcontent2;
    $glossary_tCFG->InactiveFontColor= $THEME->hidden;
    $glossary_tCFG->TabTableWidth = "70%";
    $glossary_tCFG->TabsPerRow = 4;
    $glossary_tCFG->TabSeparation = 4;

    $data[GLOSSARY_STANDARD_VIEW]->caption = get_string("standardview", "glossary");
    $data[GLOSSARY_CATEGORY_VIEW]->caption = get_string("categoryview", "glossary");
    $data[GLOSSARY_DATE_VIEW]->caption = get_string("dateview", "glossary");
    $data[GLOSSARY_AUTHOR_VIEW]->caption = get_string("authorview","glossary");
    if (!isguest()) {
        if ( isteacher($course->id) or $glossary->studentcanpost  ) {
            $data[GLOSSARY_ADDENTRY_VIEW]->caption = get_string("addentry", "glossary");
            $data[GLOSSARY_ADDENTRY_VIEW]->link = "edit.php?id=$cm->id";
        }
    }

    if ( isteacher($course->id) ) {
        $data[GLOSSARY_IMPORT_VIEW]->caption = get_string("importentries", "glossary");
        $data[GLOSSARY_EXPORT_VIEW]->caption = get_string("exportentries", "glossary");

        $data[GLOSSARY_IMPORT_VIEW]->link = "import.php?id=$cm->id";
        $data[GLOSSARY_EXPORT_VIEW]->link = "export.php?id=$cm->id&mode=$mode&hook=$hook";

    }

//    $data[GLOSSARY_DATE_VIEW]->link = "view.php?id=$id&tab=".GLOSSARY_DATE_VIEW;

    $data[GLOSSARY_DATE_VIEW]->link = "view.php?id=$id&mode=date";

    $data[GLOSSARY_STANDARD_VIEW]->link = "view.php?id=$id&mode=letter";
    $data[GLOSSARY_CATEGORY_VIEW]->link = "view.php?id=$id&mode=cat";
    $data[GLOSSARY_AUTHOR_VIEW]->link = "view.php?id=$id&mode=author";


    if (isteacher($course->id)) {
        $data[GLOSSARY_APPROVAL_VIEW]->caption = get_string("waitingapproval", "glossary");
        $data[GLOSSARY_APPROVAL_VIEW]->link = "";

        $hiddenentries = get_records_select("glossary_entries","glossaryid  = $glossary->id and approved = 0");
        if ($hiddenentries) {
            $data[GLOSSARY_APPROVAL_VIEW]->caption .= "<br><font size=1>(" . count($hiddenentries) . " " . get_string("entries","glossary") . ")</font>";
            $data[GLOSSARY_APPROVAL_VIEW]->link = "view.php?id=$id&tab=".GLOSSARY_APPROVAL_VIEW;

            $data[GLOSSARY_APPROVAL_VIEW]->link = "view.php?id=$id&mode=approval";

        } elseif ( $tab == GLOSSARY_APPROVAL_VIEW ) {
            $tab = $framebydefault;
        }
    } elseif ( $tab == GLOSSARY_APPROVAL_VIEW ) {
        $tab = $framebydefault;
    }

/// printing header of the current tab
    echo '<center>';
    glossary_print_tabbed_table_start($data, $tab, $glossary_tCFG);
 
    if (!isset($category)) {
        $category = "";
    }
    
    switch ($tab) {
        case GLOSSARY_CATEGORY_VIEW:
            glossary_print_categories_menu($cm, $glossary, $hook, $category);
        break;
        case GLOSSARY_APPROVAL_VIEW:
            glossary_print_approval_menu($cm, $glossary, $mode, $hook, $sortkey, $sortorder);
        break;
        case GLOSSARY_ADDENTRY_VIEW:
            $search = "";
            $l = "";
            glossary_print_addentry_menu($cm, $glossary, $mode, $hook, $sortkey, $sortorder);
        break;
        case GLOSSARY_AUTHOR_VIEW:
            $search = "";
            glossary_print_author_menu($cm, $glossary, "author", $hook, $sortkey, $sortorder, 'print');
        break;
        case GLOSSARY_IMPORT_VIEW:
            $search = "";
            $l = "";
            glossary_print_import_menu($cm, $glossary, 'import', $hook, $sortkey, $sortorder);
        break;
        case GLOSSARY_EXPORT_VIEW:
            $search = "";
            $l = "";
            glossary_print_export_menu($cm, $glossary, 'export', $hook, $sortkey, $sortorder);
        break;
        case GLOSSARY_DATE_VIEW:
            if (!$sortkey) {
                $sortkey = 'UPDATE';
            }
            if (!$sortorder) {
                $sortorder = 'desc';
            }
            glossary_print_alphabet_menu($cm, $glossary, "date", $hook, $sortkey, $sortorder);
        break;
        case GLOSSARY_STANDARD_VIEW:
        default:
            glossary_print_alphabet_menu($cm, $glossary, "letter", $hook, $sortkey, $sortorder);
            if ($mode == 'search' and $hook) {
                echo "<h3>$strsearch: $hook</h3>";
            } 
        break;
    } 
    echo '<hr>';
?>