mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
f4fb66d7d9
ipatlas is now just a plugin, and we can add other plugins to the same job better.
20 lines
409 B
PHP
20 lines
409 B
PHP
<?php // $Id$
|
|
// Do an IP lookup of a user, using selected plugin
|
|
|
|
require('../config.php');
|
|
|
|
require_login();
|
|
|
|
$ip = optional_param('ip', getremoteaddr());
|
|
$user = optional_param('user', $USER->id);
|
|
|
|
if (empty($CFG->iplookup)) {
|
|
set_config('iplookup', 'ipatlas');
|
|
}
|
|
|
|
require("$CFG->dirroot/iplookup/$CFG->iplookup/lib.php");
|
|
|
|
iplookup_display($ip, $user);
|
|
|
|
?>
|