12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- // This file is part of Moodle - http://moodle.org/
- //
- // Moodle 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 3 of the License, or
- // (at your option) any later version.
- //
- // Moodle 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.
- //
- // You should have received a copy of the GNU General Public License
- // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
- /**
- * 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 <http://www.usp.br/line>
- * @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.";
|