Commit | Line | Data |
---|---|---|
aa54ed7b | 1 | <?php |
2 | ||
3 | // This file is part of Moodle - http://moodle.org/ | |
4 | // | |
5 | // Moodle is free software: you can redistribute it and/or modify | |
6 | // it under the terms of the GNU General Public License as published by | |
7 | // the Free Software Foundation, either version 3 of the License, or | |
8 | // (at your option) any later version. | |
9 | // | |
10 | // Moodle is distributed in the hope that it will be useful, | |
11 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | // GNU General Public License for more details. | |
14 | // | |
15 | // You should have received a copy of the GNU General Public License | |
16 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. | |
17 | ||
18 | /** | |
19 | * List of all resource type modules in course | |
20 | * | |
aa6c1ced | 21 | * @package moodlecore |
aa54ed7b | 22 | * @copyright 2009 Petr Skoda (http://skodak.org) |
aa6c1ced | 23 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later |
aa54ed7b | 24 | */ |
25 | ||
26 | require_once('../config.php'); | |
27 | require_once("$CFG->libdir/resourcelib.php"); | |
28 | ||
29 | $id = required_param('id', PARAM_INT); // course id | |
30 | ||
74df2951 | 31 | $course = $DB->get_record('course', array('id'=>$id), '*', MUST_EXIST); |
369484bf | 32 | $PAGE->set_pagelayout('incourse'); |
aa54ed7b | 33 | require_course_login($course, true); |
34 | ||
35 | // get list of all resource-like modules | |
36 | $allmodules = $DB->get_records('modules', array('visible'=>1)); | |
957944dc | 37 | $availableresources = array(); |
aa54ed7b | 38 | foreach ($allmodules as $key=>$module) { |
39 | $modname = $module->name; | |
40 | $libfile = "$CFG->dirroot/mod/$modname/lib.php"; | |
41 | if (!file_exists($libfile)) { | |
42 | continue; | |
43 | } | |
44 | $archetype = plugin_supports('mod', $modname, FEATURE_MOD_ARCHETYPE, MOD_ARCHETYPE_OTHER); | |
45 | if ($archetype != MOD_ARCHETYPE_RESOURCE) { | |
46 | continue; | |
47 | } | |
48 | ||
957944dc | 49 | $availableresources[] = $modname; |
aa54ed7b | 50 | } |
51 | ||
957944dc MG |
52 | // Triger view event. |
53 | $event = \core\event\course_resources_list_viewed::create(array('context' => context_course::instance($course->id))); | |
54 | $event->set_legacy_logdata($availableresources); | |
55 | $event->add_record_snapshot('course', $course); | |
56 | $event->trigger(); | |
57 | ||
aa54ed7b | 58 | $strresources = get_string('resources'); |
aa54ed7b | 59 | $strname = get_string('name'); |
60 | $strintro = get_string('moduleintro'); | |
61 | $strlastmodified = get_string('lastmodified'); | |
62 | ||
a6855934 | 63 | $PAGE->set_url('/course/resources.php', array('id' => $course->id)); |
aa54ed7b | 64 | $PAGE->set_title($course->shortname.': '.$strresources); |
65 | $PAGE->set_heading($course->fullname); | |
3856ca56 | 66 | $PAGE->navbar->add($strresources); |
67 | echo $OUTPUT->header(); | |
aa54ed7b | 68 | |
69 | $modinfo = get_fast_modinfo($course); | |
7487c856 | 70 | $usesections = course_format_uses_sections($course->format); |
aa54ed7b | 71 | $cms = array(); |
72 | $resources = array(); | |
73 | foreach ($modinfo->cms as $cm) { | |
957944dc | 74 | if (!in_array($cm->modname, $availableresources)) { |
aa54ed7b | 75 | continue; |
76 | } | |
957944dc | 77 | if (!$cm->uservisible) { |
aa54ed7b | 78 | continue; |
79 | } | |
0d8b6a69 | 80 | if (!$cm->has_view()) { |
81 | // Exclude label and similar | |
82 | continue; | |
83 | } | |
aa54ed7b | 84 | $cms[$cm->id] = $cm; |
85 | $resources[$cm->modname][] = $cm->instance; | |
86 | } | |
87 | ||
88 | // preload instances | |
89 | foreach ($resources as $modname=>$instances) { | |
48cb2c82 RS |
90 | $additionalfields = ''; |
91 | if (plugin_supports('mod', $modname, FEATURE_MOD_INTRO)) { | |
92 | $additionalfields = ',intro,introformat'; | |
93 | } | |
94 | $resources[$modname] = $DB->get_records_list($modname, 'id', $instances, 'id', 'id,name'.$additionalfields); | |
aa54ed7b | 95 | } |
96 | ||
97 | if (!$cms) { | |
98 | notice(get_string('thereareno', 'moodle', $strresources), "$CFG->wwwroot/course/view.php?id=$course->id"); | |
99 | exit; | |
100 | } | |
101 | ||
102 | $table = new html_table(); | |
16be8974 | 103 | $table->attributes['class'] = 'generaltable mod_index'; |
aa54ed7b | 104 | |
7487c856 | 105 | if ($usesections) { |
09af1e28 | 106 | $strsectionname = get_string('sectionname', 'format_'.$course->format); |
7487c856 | 107 | $table->head = array ($strsectionname, $strname, $strintro); |
aa54ed7b | 108 | $table->align = array ('center', 'left', 'left'); |
109 | } else { | |
110 | $table->head = array ($strlastmodified, $strname, $strintro); | |
111 | $table->align = array ('left', 'left', 'left'); | |
112 | } | |
113 | ||
114 | $currentsection = ''; | |
115 | foreach ($cms as $cm) { | |
116 | if (!isset($resources[$cm->modname][$cm->instance])) { | |
117 | continue; | |
118 | } | |
119 | $resource = $resources[$cm->modname][$cm->instance]; | |
48cb2c82 | 120 | $printsection = ''; |
7487c856 | 121 | if ($usesections) { |
aa54ed7b | 122 | if ($cm->sectionnum !== $currentsection) { |
123 | if ($cm->sectionnum) { | |
71a56e08 | 124 | $printsection = get_section_name($course, $cm->sectionnum); |
aa54ed7b | 125 | } |
126 | if ($currentsection !== '') { | |
127 | $table->data[] = 'hr'; | |
128 | } | |
129 | $currentsection = $cm->sectionnum; | |
130 | } | |
aa54ed7b | 131 | } |
132 | ||
133 | $extra = empty($cm->extra) ? '' : $cm->extra; | |
957944dc | 134 | $icon = '<img src="'.$cm->get_icon_url().'" class="activityicon" alt="'.$cm->get_module_type_name().'" /> '; |
aa54ed7b | 135 | |
9686f7cc | 136 | if (isset($resource->intro) && isset($resource->introformat)) { |
01f329ba | 137 | $intro = format_module_intro($cm->modname, $resource, $cm->id); |
48cb2c82 RS |
138 | } else { |
139 | $intro = ''; | |
140 | } | |
141 | ||
aa54ed7b | 142 | $class = $cm->visible ? '' : 'class="dimmed"'; // hidden modules are dimmed |
143 | $table->data[] = array ( | |
144 | $printsection, | |
957944dc | 145 | "<a $class $extra href=\"".$cm->url."\">".$icon.$cm->get_formatted_name()."</a>", |
48cb2c82 | 146 | $intro); |
aa54ed7b | 147 | } |
148 | ||
16be8974 | 149 | echo html_writer::table($table); |
aa54ed7b | 150 | |
151 | echo $OUTPUT->footer(); |