Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/main/admin/ldap_form_add_users_group.php

65 lines
2.9 KiB

<?php //$id: $
/*
==============================================================================
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
==============================================================================
*/
/**
* This form is included by ldap_import_students.php
*/
$nbre=0;
echo '<form name="form" method="post" action="ldap_users_list.php">';
if($statut==1)
{
echo get_lang('Notification par courriel de l\'inscription').': <input type="checkbox" name="mailling" value="1" checked="checked"><i>'.get_lang('ne pas d&eacute;cocher').'</i>';
}
else
{
echo '<input type="hidden" name="mailling" value="1">';
}
echo '<table border="0" cellspacing="0" width="100%">';
echo '<tr align="center" id="header3">' .
'<td width="15%"><input type="button" value="'.get_lang('AllSlashNone').'" onClick="checkAll();"></td>' .
'<td width="40%"><b>'.get_lang('Email').'</b></td>' .
'<td width="15%"><b>'.get_lang('Name').'</b></td>' .
'<td width="15%"><b>'.get_lang('Firstname').'</b></td>' .
'<td width="15%"><b>'.get_lang('Login').'</b></td>' .
'</tr>'."\n";
while (list ($key, $val) = each($nom_form)) {
$nbre=$nbre+1;
if($nbre & 1) $ndiv=2; else $ndiv=3;
echo '<tr align="center" id="header'.$ndiv.'">';
echo '<td><input type="checkbox" name="checkboxes[]" value="'.$key.'" checked="checked"></td>';
echo '<td>'.$email_form[$key].'<input type="hidden" name="email_form['.$key.']" size="40" value="'.$email_form[$key].'"></td>';
echo '<td>'.$nom_form[$key].'<input type="hidden" name="nom_form['.$key.']" size="20" value="'.$nom_form[$key].'"></td>';
echo '<td>'.$prenom_form[$key].'<input type="hidden" name="prenom_form['.$key.']" size="20" value="'.$prenom_form[$key].'"></td>';
echo '<td>'.$username_form[$key].'<input type="hidden" name="username_form['.$key.']" size="10" value="'.$username_form[$key].'">';
echo '<input type="hidden" name="tutor_form['.$key.']" value="0">';
echo '<input type="hidden" name="admin_form['.$key.']" value="1">';
echo '<input type="hidden" name="password_form['.$key.']" value="'.$password_form[$key].'">';
echo '<input type="hidden" name="statut['.$key.']" value="'.$statut.'">';
echo '</td>';
echo '</tr>';
}
echo '</table>';
echo '<br />';
echo '<br />';
echo '<input type="submit" name="submit" value="'.get_lang('Submit').'">';
echo '</form>';
?>