ILIAS  trunk Revision v11.0_alpha-1723-g8e69f309bab
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
custom_username_func.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 final 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 }