Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is supported too.
/mod/url/ -> index.php (source)

Differences Between: [Versions 310 and 401] [Versions 311 and 401] [Versions 39 and 401]

   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 urls in course
  20   *
  21   * @package    mod_url
  22   * @copyright  2009 onwards Martin Dougiamas (http://dougiamas.com)
  23   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   */
  25  
  26  require('../../config.php');
  27  
  28  $id = required_param('id', PARAM_INT); // course id
  29  
  30  $course = $DB->get_record('course', array('id'=>$id), '*', MUST_EXIST);
  31  
  32  require_course_login($course, true);
  33  $PAGE->set_pagelayout('incourse');
  34  
  35  $params = array(
  36      'context' => context_course::instance($course->id)
  37  );
  38  $event = \mod_url\event\course_module_instance_list_viewed::create($params);
  39  $event->add_record_snapshot('course', $course);
  40  $event->trigger();
  41  
  42  $strurl       = get_string('modulename', 'url');
  43  $strurls      = get_string('modulenameplural', 'url');
  44  $strname         = get_string('name');
  45  $strintro        = get_string('moduleintro');
  46  $strlastmodified = get_string('lastmodified');
  47  
  48  $PAGE->set_url('/mod/url/index.php', array('id' => $course->id));
  49  $PAGE->set_title($course->shortname.': '.$strurls);
  50  $PAGE->set_heading($course->fullname);
  51  $PAGE->navbar->add($strurls);
  52  echo $OUTPUT->header();
  53  if (!$PAGE->has_secondary_navigation()) {
  54      echo $OUTPUT->heading($strurls);
  55  }
  56  
  57  if (!$urls = get_all_instances_in_course('url', $course)) {
  58      notice(get_string('thereareno', 'moodle', $strurls), "$CFG->wwwroot/course/view.php?id=$course->id");
  59      exit;
  60  }
  61  
  62  $usesections = course_format_uses_sections($course->format);
  63  
  64  $table = new html_table();
  65  $table->attributes['class'] = 'generaltable mod_index';
  66  
  67  if ($usesections) {
  68      $strsectionname = get_string('sectionname', 'format_'.$course->format);
  69      $table->head  = array ($strsectionname, $strname, $strintro);
  70      $table->align = array ('center', 'left', 'left');
  71  } else {
  72      $table->head  = array ($strlastmodified, $strname, $strintro);
  73      $table->align = array ('left', 'left', 'left');
  74  }
  75  
  76  $modinfo = get_fast_modinfo($course);
  77  $currentsection = '';
  78  foreach ($urls as $url) {
  79      $cm = $modinfo->cms[$url->coursemodule];
  80      if ($usesections) {
  81          $printsection = '';
  82          if ($url->section !== $currentsection) {
  83              if ($url->section) {
  84                  $printsection = get_section_name($course, $url->section);
  85              }
  86              if ($currentsection !== '') {
  87                  $table->data[] = 'hr';
  88              }
  89              $currentsection = $url->section;
  90          }
  91      } else {
  92          $printsection = '<span class="smallinfo">'.userdate($url->timemodified)."</span>";
  93      }
  94  
  95      $extra = empty($cm->extra) ? '' : $cm->extra;
  96      $icon = '';
  97      if (!empty($cm->icon)) {
  98          // each url has an icon in 2.0
  99          $icon = $OUTPUT->pix_icon($cm->icon, get_string('modulename', $cm->modname)) . ' ';
 100      }
 101  
 102      $class = $url->visible ? '' : 'class="dimmed"'; // hidden modules are dimmed
 103      $table->data[] = array (
 104          $printsection,
 105          "<a $class $extra href=\"view.php?id=$cm->id\">".$icon.format_string($url->name)."</a>",
 106          format_module_intro('url', $url, $cm->id));
 107  }
 108  
 109  echo html_writer::table($table);
 110  
 111  echo $OUTPUT->footer();