GetByName() public static method

Get the user type that matches the given name.
public static GetByName ( $p_name ) : mixed
$p_name The name of the user type
return mixed null If the user type does not exists or any error UserType object
Ejemplo n.º 1
0
if (!SecurityToken::isValid()) {
    camp_html_display_error(getGS('Invalid security token!'));
    exit;
}

$canManage = $g_user->hasPermission('ManageUserTypes');
if (!$canManage) {
	$error = getGS("You do not have the right to change user type permissions.");
	camp_html_display_error($error);
	exit;
}

$BackLink = "add.php";
$uType = Input::Get('Name', 'string', '');
if ($uType != '') {
	$userType = UserType::GetByName($uType);
	if ($userType->exists()) {
		$errMsg = getGS("A user type with the name '$1' already exists.", $uType);
		camp_html_add_msg($errMsg);
        camp_html_goto_page($BackLink);
		exit;
	}
} else {
	camp_html_add_msg(getGS('You must fill in the $1 field.', getGS('Name')));
    camp_html_goto_page($BackLink);
	exit;
}

$rights = array();
$rightsFields = User::GetDefaultConfig();
foreach ($rightsFields as $field=>$value) {