function stats_display_main
Search API
7.x stats.module | stats_display_main() |
6.x stats.module | stats_display_main() |
4.x stats.module | stats_display_main() |
5.x stats.module | stats_display_main() |
Main menu screen for this module.
Return value
unknown
File
- modules/
stats/ stats.module, line 1054 - This module displays statistics and reports for FlightPath
Code
function stats_display_main() {
$rtn = "";
$rtn .= "<ul>";
$rtn .= "<li>" . l(t("Access Stats"), "stats/access") . "
<br>
" . t("See recent access within the system. This can be useful to see if anyone is currently using the system.") . "
</li>";
$rtn .= "<li>" . l(t("Major Counts"), "stats/major-counts") . "
<br>
" . t("Displays the number of students within each major or major/concentration.") . "
</li>";
$rtn .= "<li>" . l(t("Selected Degree Options"), "stats/selected-degree-options") . "
<br>
" . t("This report will display information about which degree options students/advisors are selecting for particular majors
(ex: General Studies)") . "
</li>";
$rtn .= "<li>" . l(t("Advisor Use Report"), "stats/advisor-use") . "
<br>
" . t("How many students an advisor has advised over a specified time range.") . "
</li>";
$rtn .= "<li>" . l(t("Student Course List"), "stats/student-course-list") . "
<br>
" . t("List courses a student has taken, which FlightPath is aware of.") . "
</li>";
$rtn .= "<li>" . l(t("FlightPath Use Summary"), "stats/flightpath-use-summary") . "
<br>
" . t("A detailed report on how FlightPath is being used over a specified time range.") . "
</li>";
$rtn .= "</ul>";
return $rtn;
}