Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 39 and 311] [Versions 39 and 400] [Versions 39 and 401] [Versions 39 and 402] [Versions 39 and 403]

   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   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.
   8  //
   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.
  13  //
  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/>.
  16  
  17  /**
  18   * List and modify users that are not enrolled but still have a role in course.
  19   *
  20   * @package    core_enrol
  21   * @copyright  2010 Petr Skoda {@link http://skodak.org}
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  require('../config.php');
  26  require_once("$CFG->dirroot/enrol/locallib.php");
  27  require_once("$CFG->dirroot/enrol/renderer.php");
  28  require_once("$CFG->dirroot/group/lib.php");
  29  
  30  $id      = required_param('id', PARAM_INT); // course id
  31  $action  = optional_param('action', '', PARAM_ALPHANUMEXT);
  32  $filter  = optional_param('ifilter', 0, PARAM_INT);
  33  
  34  $course = $DB->get_record('course', array('id'=>$id), '*', MUST_EXIST);
  35  $context = context_course::instance($course->id, MUST_EXIST);
  36  
  37  require_login($course);
  38  require_capability('moodle/course:reviewotherusers', $context);
  39  
  40  if ($course->id == SITEID) {
  41      redirect("$CFG->wwwroot/");
  42  }
  43  
  44  $PAGE->set_pagelayout('admin');
  45  
  46  $manager = new course_enrolment_manager($PAGE, $course, $filter);
  47  $table = new course_enrolment_other_users_table($manager, $PAGE);
  48  $PAGE->set_url('/enrol/otherusers.php', $manager->get_url_params()+$table->get_url_params());
  49  navigation_node::override_active_url(new moodle_url('/enrol/otherusers.php', array('id' => $id)));
  50  
  51  $userdetails = array (
  52      'picture' => false,
  53      'userfullnamedisplay' => false,
  54      'firstname' => get_string('firstname'),
  55      'lastname' => get_string('lastname'),
  56  );
  57  $extrafields = get_extra_user_fields($context);
  58  foreach ($extrafields as $field) {
  59      $userdetails[$field] = get_user_field_name($field);
  60  }
  61  
  62  $fields = array(
  63      'userdetails' => $userdetails,
  64      'lastaccess' => get_string('lastaccess'),
  65      'role' => get_string('roles', 'role')
  66  );
  67  
  68  // Remove hidden fields if the user has no access
  69  if (!has_capability('moodle/course:viewhiddenuserfields', $context)) {
  70      $hiddenfields = array_flip(explode(',', $CFG->hiddenuserfields));
  71      if (isset($hiddenfields['lastaccess'])) {
  72          unset($fields['lastaccess']);
  73      }
  74  }
  75  
  76  $table->set_fields($fields, $OUTPUT);
  77  
  78  //$users = $manager->get_other_users($table->sort, $table->sortdirection, $table->page, $table->perpage);
  79  
  80  $renderer = $PAGE->get_renderer('core_enrol');
  81  $canassign = has_capability('moodle/role:assign', $manager->get_context());
  82  $users = $manager->get_other_users_for_display($renderer, $PAGE->url, $table->sort, $table->sortdirection, $table->page, $table->perpage);
  83  $assignableroles = $manager->get_assignable_roles(true);
  84  foreach ($users as $userid=>&$user) {
  85      $user['picture'] = $OUTPUT->render($user['picture']);
  86      $user['role'] = $renderer->user_roles_and_actions($userid, $user['roles'], $assignableroles, $canassign, $PAGE->url);
  87  }
  88  
  89  $table->set_total_users($manager->get_total_other_users());
  90  $table->set_users($users);
  91  
  92  $PAGE->set_title($course->fullname.': '.get_string('totalotherusers', 'enrol', $manager->get_total_other_users()));
  93  $PAGE->set_heading($PAGE->title);
  94  
  95  echo $OUTPUT->header();
  96  echo $renderer->render($table);
  97  echo $OUTPUT->footer();