function z__course_search_display_view_reports

6.x course_search.edit.inc z__course_search_display_view_reports()

File

modules/course_search/course_search.edit.inc, line 637
This file contains functions relating to editing the course info, like rotation schedule and syllabus

Code

function z__course_search_display_view_reports() {

  $rtn = "";

  $rtn .= "<h2 class='title'>" . t("View Reports") . "</h2>";
  $rtn .= "<ul>";

  $rtn .= "<li>" . l(t("[CSV] Anticipated Offerings - All Courses"), "tools/course-search/get-offering-csv") . "</a>
              - " . t("This report shows all courses in the catalog's anticipated offerings
              for the next 5 years.  Will be downloaded as a CSV file.
              <b>May take up to a minute to load.</b>") . "</li> ";

  $rtn .= "</ul>";
  return $rtn;
}