. /** * Competence Graph * * Competence graph format allows the visualization of courses with competencies in a graph. * In the course structure, teacher associates activities to competencies. Each course module * can have restrictions between them, so a module is opened only when the student accomplish * its requirements. In student visualization, the structure of the course is presented as a * graph. In such graph, each node is a resource available to the student that can be handled. * Subgraphs in the main graph represent competences. As students can have different paths in * the course, the plugin registers all the steps that a student produces. * * @package course/format * @subpackage competencegraph * @version 0.1 * @author Laboratório de Informática na Educação * @link http://www.usp.br/line/competencegraph * @license http://www.gnu.org/copyleft/gpl.html GNU Public License */ // Example of usage: $string['key'] = 'value'; $string['pluginname'] = 'Competence Graph'; $string['sectionname'] = 'Graph'; $string['graphview'] = 'Graph'; $string['listview'] = 'List'; $string['emptycompetence'] = 'None activity or resource is associated to this competence.'; $string['itemswithoutcompetence'] = 'Activities and resources without competence associated'; $string['coursewithoutcompetence'] = "You are using the Competence Graph format, it's required that at least one competency has been added to this course.";