fix: [UI] small username helper changes

pull/5572/head
iglocska 2020-01-28 11:15:48 +01:00
parent f88743cb7a
commit ce6677e42c
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 4 additions and 0 deletions

View File

@ -17,6 +17,10 @@ App::uses('AppHelper', 'View/Helper');
return '<i class="fas fa-smile-beam white"></i>&nbsp;';
} else if (strpos($lower_email, 'rand') !== false && (strpos($lower_email, 'ecrime') !== false)) {
return '<i class="fas fa-camera white"></i>&nbsp;';
} else if ($lower_email === 'christian.studer@circl.lu') {
return '<span class="bold white">Mr STIX</span> ';
} else if ($lower_email === 'sami.mokaddem@circl.lu') {
return '<span class="bold white">Graphman</span> ';
}
return '';
}