[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/user/ -> profile.php (source)

   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   * Public Profile -- a user's public profile page
  19   *
  20   * - each user can currently have their own page (cloned from system and then customised)
  21   * - users can add any blocks they want
  22   * - the administrators can define a default site public profile for users who have
  23   *   not created their own public profile
  24   *
  25   * This script implements the user's view of the public profile, and allows editing
  26   * of the public profile.
  27   *
  28   * @package    core_user
  29   * @copyright  2010 Remote-Learner.net
  30   * @author     Hubert Chathi <hubert@remote-learner.net>
  31   * @author     Olav Jordan <olav.jordan@remote-learner.net>
  32   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  33   */
  34  
  35  require_once(__DIR__ . '/../config.php');
  36  require_once($CFG->dirroot . '/my/lib.php');
  37  require_once($CFG->dirroot . '/user/profile/lib.php');
  38  require_once($CFG->dirroot . '/user/lib.php');
  39  require_once($CFG->libdir.'/filelib.php');
  40  
  41  $userid         = optional_param('id', 0, PARAM_INT);
  42  $edit           = optional_param('edit', null, PARAM_BOOL);    // Turn editing on and off.
  43  $reset          = optional_param('reset', null, PARAM_BOOL);
  44  
  45  $PAGE->set_url('/user/profile.php', array('id' => $userid));
  46  
  47  if (!empty($CFG->forceloginforprofiles)) {
  48      require_login();
  49      if (isguestuser()) {
  50          $PAGE->set_context(context_system::instance());
  51          echo $OUTPUT->header();
  52          echo $OUTPUT->confirm(get_string('guestcantaccessprofiles', 'error'),
  53                                get_login_url(),
  54                                $CFG->wwwroot);
  55          echo $OUTPUT->footer();
  56          die;
  57      }
  58  } else if (!empty($CFG->forcelogin)) {
  59      require_login();
  60  }
  61  
  62  $userid = $userid ? $userid : $USER->id;       // Owner of the page.
  63  if ((!$user = $DB->get_record('user', array('id' => $userid))) || ($user->deleted)) {
  64      $PAGE->set_context(context_system::instance());
  65      echo $OUTPUT->header();
  66      if (!$user) {
  67          echo $OUTPUT->notification(get_string('invaliduser', 'error'));
  68      } else {
  69          echo $OUTPUT->notification(get_string('userdeleted'));
  70      }
  71      echo $OUTPUT->footer();
  72      die;
  73  }
  74  
  75  $currentuser = ($user->id == $USER->id);
  76  $context = $usercontext = context_user::instance($userid, MUST_EXIST);
  77  
  78  if (!user_can_view_profile($user, null, $context)) {
  79  
  80      // Course managers can be browsed at site level. If not forceloginforprofiles, allow access (bug #4366).
  81      $struser = get_string('user');
  82      $PAGE->set_context(context_system::instance());
  83      $PAGE->set_title("$SITE->shortname: $struser");  // Do not leak the name.
  84      $PAGE->set_heading($struser);
  85      $PAGE->set_url('/user/profile.php', array('id' => $userid));
  86      $PAGE->navbar->add($struser);
  87      echo $OUTPUT->header();
  88      echo $OUTPUT->notification(get_string('usernotavailable', 'error'));
  89      echo $OUTPUT->footer();
  90      exit;
  91  }
  92  
  93  // Get the profile page.  Should always return something unless the database is broken.
  94  if (!$currentpage = my_get_page($userid, MY_PAGE_PUBLIC)) {
  95      print_error('mymoodlesetup');
  96  }
  97  
  98  $PAGE->set_context($context);
  99  $PAGE->set_pagelayout('mypublic');
 100  $PAGE->set_pagetype('user-profile');
 101  
 102  // Set up block editing capabilities.
 103  if (isguestuser()) {     // Guests can never edit their profile.
 104      $USER->editing = $edit = 0;  // Just in case.
 105      $PAGE->set_blocks_editing_capability('moodle/my:configsyspages');  // unlikely :).
 106  } else {
 107      if ($currentuser) {
 108          $PAGE->set_blocks_editing_capability('moodle/user:manageownblocks');
 109      } else {
 110          $PAGE->set_blocks_editing_capability('moodle/user:manageblocks');
 111      }
 112  }
 113  
 114  // Start setting up the page.
 115  $strpublicprofile = get_string('publicprofile');
 116  
 117  $PAGE->blocks->add_region('content');
 118  $PAGE->set_subpage($currentpage->id);
 119  $PAGE->set_title(fullname($user).": $strpublicprofile");
 120  $PAGE->set_heading(fullname($user));
 121  
 122  if (!$currentuser) {
 123      $PAGE->navigation->extend_for_user($user);
 124      if ($node = $PAGE->settingsnav->get('userviewingsettings'.$user->id)) {
 125          $node->forceopen = true;
 126      }
 127  } else if ($node = $PAGE->settingsnav->get('dashboard', navigation_node::TYPE_CONTAINER)) {
 128      $node->forceopen = true;
 129  }
 130  if ($node = $PAGE->settingsnav->get('root')) {
 131      $node->forceopen = false;
 132  }
 133  
 134  
 135  // Toggle the editing state and switches.
 136  if ($PAGE->user_allowed_editing()) {
 137      if ($reset !== null) {
 138          if (!is_null($userid)) {
 139              if (!$currentpage = my_reset_page($userid, MY_PAGE_PUBLIC, 'user-profile')) {
 140                  print_error('reseterror', 'my');
 141              }
 142              redirect(new moodle_url('/user/profile.php', array('id' => $userid)));
 143          }
 144      } else if ($edit !== null) {             // Editing state was specified.
 145          $USER->editing = $edit;       // Change editing state.
 146      } else {                          // Editing state is in session.
 147          if ($currentpage->userid) {   // It's a page we can edit, so load from session.
 148              if (!empty($USER->editing)) {
 149                  $edit = 1;
 150              } else {
 151                  $edit = 0;
 152              }
 153          } else {
 154              // For the page to display properly with the user context header the page blocks need to
 155              // be copied over to the user context.
 156              if (!$currentpage = my_copy_page($userid, MY_PAGE_PUBLIC, 'user-profile')) {
 157                  print_error('mymoodlesetup');
 158              }
 159              $PAGE->set_context($usercontext);
 160              $PAGE->set_subpage($currentpage->id);
 161              // It's a system page and they are not allowed to edit system pages.
 162              $USER->editing = $edit = 0;          // Disable editing completely, just to be safe.
 163          }
 164      }
 165  
 166      // Add button for editing page.
 167      $params = array('edit' => !$edit, 'id' => $userid);
 168  
 169      $resetbutton = '';
 170      $resetstring = get_string('resetpage', 'my');
 171      $reseturl = new moodle_url("$CFG->wwwroot/user/profile.php", array('edit' => 1, 'reset' => 1, 'id' => $userid));
 172  
 173      if (!$currentpage->userid) {
 174          // Viewing a system page -- let the user customise it.
 175          $editstring = get_string('updatemymoodleon');
 176          $params['edit'] = 1;
 177      } else if (empty($edit)) {
 178          $editstring = get_string('updatemymoodleon');
 179          $resetbutton = $OUTPUT->single_button($reseturl, $resetstring);
 180      } else {
 181          $editstring = get_string('updatemymoodleoff');
 182          $resetbutton = $OUTPUT->single_button($reseturl, $resetstring);
 183      }
 184  
 185      $url = new moodle_url("$CFG->wwwroot/user/profile.php", $params);
 186      $button = $OUTPUT->single_button($url, $editstring);
 187      $PAGE->set_button($resetbutton . $button);
 188  
 189  } else {
 190      $USER->editing = $edit = 0;
 191  }
 192  
 193  // Trigger a user profile viewed event.
 194  profile_view($user, $usercontext);
 195  
 196  // TODO WORK OUT WHERE THE NAV BAR IS!
 197  echo $OUTPUT->header();
 198  echo '<div class="userprofile">';
 199  
 200  if ($user->description && !isset($hiddenfields['description'])) {
 201      echo '<div class="description">';
 202      if (!empty($CFG->profilesforenrolledusersonly) && !$currentuser &&
 203          !$DB->record_exists('role_assignments', array('userid' => $user->id))) {
 204          echo get_string('profilenotshown', 'moodle');
 205      } else {
 206          $user->description = file_rewrite_pluginfile_urls($user->description, 'pluginfile.php', $usercontext->id, 'user',
 207                                                            'profile', null);
 208          echo format_text($user->description, $user->descriptionformat);
 209      }
 210      echo '</div>';
 211  }
 212  
 213  echo $OUTPUT->custom_block_region('content');
 214  
 215  // Render custom blocks.
 216  $renderer = $PAGE->get_renderer('core_user', 'myprofile');
 217  $tree = core_user\output\myprofile\manager::build_tree($user, $currentuser);
 218  echo $renderer->render($tree);
 219  
 220  echo '</div>';  // Userprofile class.
 221  
 222  echo $OUTPUT->footer();


Generated: Thu Aug 11 10:00:09 2016 Cross-referenced by PHPXref 0.7.1