id); add_to_log($course->id, "dialogue", "view all", "index.php?id=$course->id", ""); $strdialogue = get_string("modulename", "dialogue"); $strdialogues = get_string("modulenameplural", "dialogue"); $strname = get_string("name"); $stropendialogues = get_string("open", "dialogue")." ".$strdialogues; $strcloseddialogues = get_string("closed", "dialogue")." ".$strdialogues; print_header_simple("$strdialogues", "", "$strdialogues", "", "", true, "", navmenu($course)); if (!$dialogues = get_all_instances_in_course("dialogue", $course)) { notice("There are no dialogues", "../../course/view.php?id=$course->id"); die; } $timenow = time(); $table->head = array ($strname, $stropendialogues, $strcloseddialogues); $table->align = array ("center", "center", "center"); foreach ($dialogues as $dialogue) { if (!$cm = get_coursemodule_from_instance("dialogue", $dialogue->id, $course->id)) { error("Course Module ID was incorrect"); } $table->data[] = array ("id\">$dialogue->name", dialogue_count_open($dialogue, $USER), dialogue_count_closed($dialogue, $USER)); } echo "
"; print_table($table); print_footer($course); ?>