2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * This file is the entry point to the assign module. All pages are rendered from here
21 * @copyright 2012 NetSpot {@link http://www.netspot.com.au}
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 require_once('../../config.php');
27 /** Include locallib.php */
28 require_once($CFG->dirroot
. '/mod/assign/locallib.php');
30 $id = required_param('id', PARAM_INT
); // Course Module ID
31 $url = new moodle_url('/mod/assign/view.php', array('id' => $id)); // Base URL
33 // get the request parameters
34 $cm = get_coursemodule_from_id('assign', $id, 0, false, MUST_EXIST
);
36 $course = $DB->get_record('course', array('id' => $cm->course
), '*', MUST_EXIST
);
39 require_login($course, true, $cm);
42 $context = context_module
::instance($cm->id
);
44 require_capability('mod/assign:view', $context);
46 $assign = new assign($context,$cm,$course);
49 $completion=new completion_info($course);
50 $completion->set_module_viewed($cm);
52 // Get the assign to render the page
53 echo $assign->view(optional_param('action', '', PARAM_TEXT
));