mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
258 lines
8.7 KiB
PHP
258 lines
8.7 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Block displaying information about current logged-in user.
|
|
*
|
|
* This block can be used as anti cheating measure, you
|
|
* can easily check the logged-in user matches the person
|
|
* operating the computer.
|
|
*
|
|
* @package block
|
|
* @subpackage myprofile
|
|
* @copyright 2010 Remote-Learner.net
|
|
* @author Olav Jordan <olav.jordan@remote-learner.ca>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
/**
|
|
* Displays the current user's profile information.
|
|
*
|
|
* @copyright 2010 Remote-Learner.net
|
|
* @author Olav Jordan <olav.jordan@remote-learner.ca>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class block_myprofile extends block_base {
|
|
/**
|
|
* block initializations
|
|
*/
|
|
public function init() {
|
|
$this->title = get_string('pluginname', 'block_myprofile');
|
|
}
|
|
|
|
/**
|
|
* block contents
|
|
*
|
|
* @return object
|
|
*/
|
|
public function get_content() {
|
|
global $CFG, $USER, $DB, $OUTPUT, $PAGE;
|
|
|
|
if ($this->content !== NULL) {
|
|
return $this->content;
|
|
}
|
|
|
|
if (!isloggedin() or isguestuser()) {
|
|
return ''; // Never useful unless you are logged in as real users
|
|
}
|
|
|
|
$this->content = new stdClass;
|
|
$this->content->text = '';
|
|
$this->content->footer = '';
|
|
|
|
$course = $this->page->course;
|
|
|
|
if (!isset($this->config->display_picture) || $this->config->display_picture == 1) {
|
|
$this->content->text .= '<div class="myprofileitem picture">';
|
|
$this->content->text .= $OUTPUT->user_picture($USER, array('courseid'=>$course->id, 'size'=>'100', 'class'=>'profilepicture')); // The new class makes CSS easier
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
$this->content->text .= '<div class="myprofileitem fullname">'.fullname($USER).'</div>';
|
|
|
|
if(!isset($this->config->display_country) || $this->config->display_country == 1) {
|
|
$countries = get_string_manager()->get_list_of_countries();
|
|
if (isset($countries[$USER->country])) {
|
|
$this->content->text .= '<div class="myprofileitem country">';
|
|
$this->content->text .= get_string('country') . ': ' . $countries[$USER->country];
|
|
$this->content->text .= '</div>';
|
|
}
|
|
}
|
|
|
|
if(!isset($this->config->display_city) || $this->config->display_city == 1) {
|
|
$this->content->text .= '<div class="myprofileitem city">';
|
|
$this->content->text .= get_string('city') . ': ' . format_string($USER->city);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!isset($this->config->display_email) || $this->config->display_email == 1) {
|
|
$this->content->text .= '<div class="myprofileitem email">';
|
|
$this->content->text .= obfuscate_mailto($USER->email, '');
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_icq) && !empty($USER->icq)) {
|
|
$this->content->text .= '<div class="myprofileitem icq">';
|
|
$this->content->text .= 'ICQ: ' . s($USER->icq);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_skype) && !empty($USER->skype)) {
|
|
$this->content->text .= '<div class="myprofileitem skype">';
|
|
$this->content->text .= 'Skype: ' . s($USER->skype);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_yahoo) && !empty($USER->yahoo)) {
|
|
$this->content->text .= '<div class="myprofileitem yahoo">';
|
|
$this->content->text .= 'Yahoo: ' . s($USER->yahoo);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_aim) && !empty($USER->aim)) {
|
|
$this->content->text .= '<div class="myprofileitem aim">';
|
|
$this->content->text .= 'AIM: ' . s($USER->aim);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_msn) && !empty($USER->msn)) {
|
|
$this->content->text .= '<div class="myprofileitem msn">';
|
|
$this->content->text .= 'MSN: ' . s($USER->msn);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_phone1) && !empty($USER->phone1)) {
|
|
$this->content->text .= '<div class="myprofileitem phone1">';
|
|
$this->content->text .= get_string('phone').': ' . s($USER->phone1);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_phone2) && !empty($USER->phone2)) {
|
|
$this->content->text .= '<div class="myprofileitem phone2">';
|
|
$this->content->text .= get_string('phone').': ' . s($USER->phone2);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_institution) && !empty($USER->institution)) {
|
|
$this->content->text .= '<div class="myprofileitem institution">';
|
|
$this->content->text .= format_string($USER->institution);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_address) && !empty($USER->address)) {
|
|
$this->content->text .= '<div class="myprofileitem address">';
|
|
$this->content->text .= format_string($USER->address);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_firstaccess) && !empty($USER->firstaccess)) {
|
|
$this->content->text .= '<div class="myprofileitem firstaccess">';
|
|
$this->content->text .= get_string('firstaccess').': ' . userdate($USER->firstaccess);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_lastaccess) && !empty($USER->lastaccess)) {
|
|
$this->content->text .= '<div class="myprofileitem lastaccess">';
|
|
$this->content->text .= get_string('lastaccess').': ' . userdate($USER->lastaccess);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_currentlogin) && !empty($USER->currentlogin)) {
|
|
$this->content->text .= '<div class="myprofileitem currentlogin">';
|
|
$this->content->text .= get_string('login').': ' . userdate($USER->currentlogin);
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
if(!empty($this->config->display_lastip) && !empty($USER->lastip)) {
|
|
$this->content->text .= '<div class="myprofileitem lastip">';
|
|
$this->content->text .= 'IP: ' . $USER->lastip;
|
|
$this->content->text .= '</div>';
|
|
}
|
|
|
|
return $this->content;
|
|
}
|
|
|
|
/**
|
|
* allow the block to have a configuration page
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function has_config() {
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* allow more than one instance of the block on a page
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function instance_allow_multiple() {
|
|
//allow more than one instance on a page
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* allow instances to have their own configuration
|
|
*
|
|
* @return boolean
|
|
*/
|
|
function instance_allow_config() {
|
|
//allow instances to have their own configuration
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* instance specialisations (must have instance allow config true)
|
|
*
|
|
*/
|
|
public function specialization() {
|
|
}
|
|
|
|
/**
|
|
* displays instance configuration form
|
|
*
|
|
* @return boolean
|
|
*/
|
|
function instance_config_print() {
|
|
return false;
|
|
|
|
/*
|
|
global $CFG;
|
|
|
|
$form = new block_myprofile.phpConfigForm(null, array($this->config));
|
|
$form->display();
|
|
|
|
return true;
|
|
*/
|
|
}
|
|
|
|
/**
|
|
* locations where block can be displayed
|
|
*
|
|
* @return array
|
|
*/
|
|
public function applicable_formats() {
|
|
return array('all'=>true);
|
|
}
|
|
|
|
/**
|
|
* post install configurations
|
|
*
|
|
*/
|
|
public function after_install() {
|
|
}
|
|
|
|
/**
|
|
* post delete configurations
|
|
*
|
|
*/
|
|
public function before_delete() {
|
|
}
|
|
|
|
}
|