You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

39 lines
1.8 KiB

<?php
// (c) Copyright 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$
function prefs_ldap_list()
{
return [
'ldap_create_user_tiki' => [
'name' => tra('Create user if not registered in Tiki'),
'description' => tr('If a user was externally authenticated, but not found in the Tiki user database, Tiki will create an entry in its user database.'),
'type' => 'list',
'warning' => tra('If this option is disabled, this user wouldn’t be able to log in.'),
'perspective' => false,
'options' => [
'y' => tra('Create the user'),
'n' => tra('Deny access'),
],
'default' => 'y',
],
'ldap_create_user_ldap' => [
'name' => tra('Create user if not in LDAP'),
'description' => tra('If a user was authenticated by Tiki’s user database, but not found on the LDAP server, Tiki will create an LDAP entry for this user.'),
'type' => 'flag',
'default' => 'n',
'warning' => tra('As of this writing, this is not yet implemented, and this option will probably not be offered in future.'),
'tags' => ['experimental'],
],
'ldap_skip_admin' => [
'name' => tra('Use Tiki authentication for Admin log-in'),
'description' => tra('If this option is set, the user “admin” will be authenticated by only using Tiki’s user database and not via LDAP. This option has no effect on users other than “admin”.'),
'type' => 'flag',
'default' => 'y',
],
];
}