1<?php
2
3/**
4 * Provides generic SSO authentication
5 * @author Etienne MELEARD <etienne.meleard@renater.fr>
6 * @date 2018-08-27
7 */
8
9$lang['autologin'] = 'Automatically login/logout if SP session changes';
10$lang['headers'] = 'Use headers as attribute source (instead of environment)';
11$lang['login_url'] = 'URL to redirect the user to for loging-in';
12$lang['logout_url'] = 'URL to redirect the user to for loging-out';
13$lang['home_url'] = 'URL to go to after loging-out';
14$lang['idp_attribute'] = 'Identity provider id attribute name';
15$lang['id_attribute'] = 'User identifier attribute name';
16$lang['email_attribute'] = 'User email attribute name';
17$lang['fullname_attribute'] = 'User full name attribute name';
18