0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
validators
/
[
Home
]
File: validator_username.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: validator_username.php 53803 2015-02-06 00:42:50Z jyhem $ function validator_username($input, $parameter = '', $message = '') { global $prefs; $userlib = TikiLib::lib('user'); if ($userlib->user_exists($input)) { return tra("User already exists"); } if (!empty($prefs['username_pattern']) && !preg_match($prefs['username_pattern'], $input)) { return tra("Invalid character combination for username"); } if (strtolower($input) == 'anonymous' || strtolower($input) == 'registered') { return tra("Invalid username"); } if (strlen($input) > $prefs['max_username_length']) { $error = tr("Username cannot contain more than %0 characters", $prefs['max_username_length']); return $error; } if (strlen($input) < $prefs['min_username_length']) { $error = tr("Username must be at least %0 characters long", $prefs['min_username_length']); return $error; } return true; }