id); require_capability('moodle/course:viewscales', $context); $strscale = get_string("scale"); $strscales = get_string("scales"); $strcustomscale = get_string("scalescustom"); $strstandardscale = get_string("scalesstandard"); $strcustomscales = get_string("scalescustom"); $strstandardscales = get_string("scalesstandard"); $strname = get_string("name"); $strdescription = get_string("description"); $strhelptext = get_string("helptext"); $stractivities = get_string("activities"); print_header($strscales); if ($scaleid) { if ($scale = get_record("scale", 'id', $scaleid)) { if ($scale->courseid == 0 || $scale->courseid == $course->id) { $scalemenu = make_menu_from_list($scale->scale); print_simple_box_start("center"); print_heading($scale->name); echo "
"; choose_from_menu($scalemenu, "", "", ""); echo "
"; echo text_to_html($scale->description); print_simple_box_end(); close_window_button(); print_footer('empty'); exit; } } } if ($scales = get_records("scale", "courseid", "$course->id", "name ASC")) { print_heading($strcustomscales); if (has_capability('moodle/course:managescales', $context)) { echo "

("; print_string('scalestip2'); echo ")

"; } foreach ($scales as $scale) { $scalemenu = make_menu_from_list($scale->scale); print_simple_box_start("center"); print_heading($scale->name); echo "
"; choose_from_menu($scalemenu, "", "", ""); echo "
"; echo text_to_html($scale->description); print_simple_box_end(); echo "
"; } } else { if (has_capability('moodle/course:managescales', $context)) { echo "

("; print_string("scalestip"); echo ")

"; } } if ($scales = get_records("scale", "courseid", "0", "name ASC")) { print_heading($strstandardscales); foreach ($scales as $scale) { $scalemenu = make_menu_from_list($scale->scale); print_simple_box_start("center"); print_heading($scale->name); echo "
"; choose_from_menu($scalemenu, "", "", ""); echo "
"; echo text_to_html($scale->description); print_simple_box_end(); echo "
"; } } close_window_button(); print_footer('empty'); ?>