Newer
Older
Mike McGowan
committed
<?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/>.
namespace src\transformer\utils;
Mike McGowan
committed
defined('MOODLE_INTERNAL') || die();
function get_user(array $config, \stdClass $user) {
$fullname = get_full_name($user);
$hasvalidemail = filter_var($user->email, FILTER_VALIDATE_EMAIL);
if (array_key_exists('send_mbox', $config) && $config['send_mbox'] == true && $hasvalidemail) {
return [
'name' => $fullname,
'mbox' => 'mailto:' . $user->email,
}
if (array_key_exists('send_username', $config) && $config['send_username'] === true) {
return [
'name' => $fullname,
'account' => [
'homePage' => $config['app_url'],
'name' => $user->username,
Mike McGowan
committed
];
}
return [
'name' => $fullname,
'account' => [
'homePage' => $config['app_url'],
'name' => strval($user->id),
],
];