Source for file ldap_users_synchro.php
Documentation is available at ldap_users_synchro.php
exit(); //not yet functional, needs to be revised
==============================================================================
Dokeos - elearning and course management software
Copyright (c) 2008 Dokeos SPRL
Copyright (c) 2007 Mustapha Alouani (supervised by Michel Moreau-Belliard)
For a full list of contributors, see "credits.txt".
The full license can be read in "license.txt".
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
See the GNU General Public License for more details.
Contact: Dokeos, rue du Corbeau, 108, B-1030 Brussels, Belgium, info@dokeos.com
==============================================================================
==============================================================================
==============================================================================
// name of the language file that needs to be included
require ('../inc/global.inc.php');
require_once($libpath. 'formvalidator/FormValidator.class.php');
require_once($libpath. 'usermanager.lib.php');
require ("../auth/ldap/authldap.php");
// setting the section (for the tabs)
$interbreadcrumb[]= array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
// Database Table Definitions
$tbl_session_rel_etape = "session_rel_etape";
$id_session= intval($_GET['id_session']);
$errorMsg= $firstLetterUser= $firstLetterSession= '';
$UserList= $SessionList= array();
$users= $sessions= array();
$action= $_REQUEST['action'];
$tool_name = get_lang('Synchro LDAP : Import Etudiants/Etapes dans session');
//api_display_tool_title($tool_name);
<form method="get" action=" <?php echo api_get_self(); ?>" onsubmit="javascript:if(!confirm(' <?php echo get_lang('ConfirmYourChoice'); ?>')) return false;">
<option value="synchro"> <?php echo get_lang('Synchro LDAP : Import Etudiants/Etapes dans toutes les sessions'); ?></option>
<input type="submit" value=" <?php echo get_lang('Ok'); ?>">
if (isset ($action) && ($action== "synchro")) {
require ('ldap_synchro.php');
|