Parent Directory
|
Revision Log
CONTRIB-497 *Added new visualization, Grade Distribution *Fixed some minor bugs *Made abstract visualization class for creating visualizations by making classes witch extend it. *Made visual_settings.php witch takes a visualization class and truns it in to XML witch flex can read in. *Made flex visualization application read in XML formated settings as well as tab formated data from moodle and combind them to make a custom visualization. *Made flex visualization application read and use langue strings from moodle. *Added printer firendly tab TODO: *Add more visualizations *Refactor some of the flex/actionscript code *More douctenation *More UI functions for the flex application
<?php /////////////////////////////////////////////////////////////////////////// // // // NOTICE OF COPYRIGHT // // // // Moodle - Modular Object-Oriented Dynamic Learning Environment // // http://moodle.org // // // // Copyright (C) 1999 onwards Martin Dougiamas http://moodle.com // // // // This program is free software; you can redistribute it and/or modify // // it under the terms of the GNU General Public License as published by // // the Free Software Foundation; either version 2 of the License, or // // (at your option) any later version. // // // // This program is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details: // // // // http://www.gnu.org/copyleft/gpl.html // // // /////////////////////////////////////////////////////////////////////////// $string['modulename'] = 'Visual Report'; $string['visual:view'] = 'View visual course report'; $string['visualselector'] = 'Visualization:'; $string['nogroup'] = 'No Group'; $string['allgroups'] = 'All Groups'; $string['printable'] = 'Printer Friendly Version'; /// buttons text $string['hide'] = 'Hide'; $string['show'] = 'Show'; $string['xlabels'] = 'X Labels'; $string['ylabels'] = 'Y Labels'; $string['axes'] = 'Axes'; $string['invertaxes'] = 'Invert Axes'; /// common axis labels $string['grade'] = 'Grade'; $string['student'] = 'Student'; $string['numberstudents'] = 'Number of Students'; /// grades_vs_students strings $string['gradesvsstudents'] = 'Normalized Grades vs Students'; $string['gradesvsstudents:title'] = 'Normalized Grades vs Students'; /// grade_distribution strings $string['gradedistribution:title'] = 'Grade Distribution'; $string['gradedistribution'] = 'Grade Distribution (Line)'; ?>
| Moodle CVS Admin | ViewVC Help |
| Powered by ViewVC 1.0.7 |