ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
custom_username_func.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21final class ApacheCustom
22{
23 public static function getUsername(): string
24 {
25 /*
26 * enter your custom login-name resolve function here
27 *
28 * if you are using the "auto create account" feature
29 * be sure to return a valid username IN ANY CASE
30 */
31 return '';
32 }
33}