[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/user/ -> profilesys.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   * System Public Profile.
  19   *
  20   * This script allows the site administrator to edit the default site
  21   * profile.
  22   *
  23   * @package    core_user
  24   * @copyright  2010 Remote-Learner.net
  25   * @author     Hubert Chathi <hubert@remote-learner.net>
  26   * @author     Olav Jordan <olav.jordan@remote-learner.net>
  27   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  28   */
  29  
  30  require_once(__DIR__ . '/../config.php');
  31  require_once($CFG->dirroot . '/my/lib.php');
  32  require_once($CFG->libdir.'/adminlib.php');
  33  
  34  $resetall = optional_param('resetall', null, PARAM_BOOL);
  35  
  36  require_login();
  37  
  38  $header = "$SITE->shortname: ".get_string('publicprofile')." (".get_string('myprofile', 'admin').")";
  39  
  40  $PAGE->set_blocks_editing_capability('moodle/my:configsyspages');
  41  admin_externalpage_setup('profilepage', '', null, '', array('pagelayout' => 'mypublic'));
  42  
  43  if ($resetall && confirm_sesskey()) {
  44      my_reset_page_for_all_users(MY_PAGE_PUBLIC, 'user-profile');
  45      redirect($PAGE->url, get_string('allprofileswerereset', 'my'));
  46  }
  47  
  48  // Override pagetype to show blocks properly.
  49  $PAGE->set_pagetype('user-profile');
  50  
  51  $PAGE->set_title($header);
  52  $PAGE->set_heading($header);
  53  $PAGE->blocks->add_region('content');
  54  
  55  // Get the Public Profile page info.  Should always return something unless the database is broken.
  56  if (!$currentpage = my_get_page(null, MY_PAGE_PUBLIC)) {
  57      print_error('publicprofilesetup');
  58  }
  59  $PAGE->set_subpage($currentpage->id);
  60  
  61  $url = new moodle_url($PAGE->url, array('resetall' => 1));
  62  $button = $OUTPUT->single_button($url, get_string('reseteveryonesprofile', 'my'));
  63  $PAGE->set_button($button . $PAGE->button);
  64  
  65  echo $OUTPUT->header();
  66  
  67  echo $OUTPUT->custom_block_region('content');
  68  
  69  echo $OUTPUT->footer();


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