mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
13db712fa7
- Fixed paths in array authentication_login_pages in ayth.php - Added new constants AUTHENTICATION_LOGIN and AUTHENTICATION_LOGIN_PAGES to AuthLib - Added private method _redirectToLogin to AuthLib - Better comments
25 lines
874 B
PHP
25 lines
874 B
PHP
<?php
|
|
|
|
if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
// Array or a string of authentication methods sorted by priority (highest to lowest)
|
|
// NOTE: AUTH_HBALDAP works also as login page (old ugly HTTP basic authentication)
|
|
// should be placed at the end of the array
|
|
$config['authentication_foreign_methods'] = array(AUTH_BT, AUTH_HBALDAP);
|
|
|
|
// Login method
|
|
$config['authentication_login'] = AUTH_LDAP;
|
|
|
|
// Array of login pages
|
|
$config['authentication_login_pages'] = array(
|
|
AUTH_DB => '/system/Login/emailCode',
|
|
AUTH_LDAP => '/system/Login/usernamePassword',
|
|
AUTH_SSO => '/system/Login/sso'
|
|
);
|
|
|
|
// List of permissions that are allowed to perform loginAs
|
|
$config['authentication_loginas_perms'] = array('admin', 'infocenter');
|
|
|
|
// List of permissions that cannot be gained with loginAs
|
|
$config['authentication_loginas_blacklist'] = array('admin');
|