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.
		
		
		
		
		
			
		
			
				
					
					
						
							155 lines
						
					
					
						
							5.3 KiB
						
					
					
				
			
		
		
	
	
							155 lines
						
					
					
						
							5.3 KiB
						
					
					
				<?php
 | 
						|
/* For licensing terms, see /license.txt */
 | 
						|
/**
 | 
						|
 * This script allows platform admins to add users to urls.
 | 
						|
 *    It displays a list of users and a list of courses;
 | 
						|
 *    you can select multiple users and courses and then click on.
 | 
						|
 *
 | 
						|
 * @author Julio Montoya <gugli100@gmail.com>
 | 
						|
 */
 | 
						|
 | 
						|
use Chamilo\CoreBundle\Component\Utils\ActionIcon;
 | 
						|
 | 
						|
$cidReset = true;
 | 
						|
require_once __DIR__.'/../inc/global.inc.php';
 | 
						|
$this_section = SECTION_PLATFORM_ADMIN;
 | 
						|
 | 
						|
api_protect_global_admin_script();
 | 
						|
if (!api_get_multiple_access_url()) {
 | 
						|
    header('Location: index.php');
 | 
						|
    exit;
 | 
						|
}
 | 
						|
 | 
						|
$first_letter_user = '';
 | 
						|
$url_list = [];
 | 
						|
$users = [];
 | 
						|
 | 
						|
$tbl_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL);
 | 
						|
$tbl_user = Database::get_main_table(TABLE_MAIN_USER);
 | 
						|
 | 
						|
$tool_name = get_lang('Add users to an URL');
 | 
						|
$interbreadcrumb[] = ['url' => 'index.php', 'name' => get_lang('Administration')];
 | 
						|
$interbreadcrumb[] = ['url' => 'access_urls.php', 'name' => get_lang('Multiple access URL / Branding')];
 | 
						|
 | 
						|
Display::display_header($tool_name);
 | 
						|
 | 
						|
echo Display::toolbarAction(
 | 
						|
    'url',
 | 
						|
    [
 | 
						|
        Display::url(
 | 
						|
            Display::getMdiIcon(ActionIcon::EDIT, 'ch-tool-icon', null, ICON_SIZE_SMALL, get_lang('Edit users and URLs')),
 | 
						|
            api_get_path(WEB_CODE_PATH).'admin/access_url_edit_users_to_url.php'
 | 
						|
        ),
 | 
						|
    ]
 | 
						|
);
 | 
						|
 | 
						|
Display::page_subheader2($tool_name);
 | 
						|
 | 
						|
if (!empty($_POST['form_sent'])) {
 | 
						|
    $form_sent = $_POST['form_sent'];
 | 
						|
    $users = is_array($_POST['user_list']) ? array_map('intval', $_POST['user_list']) : [];
 | 
						|
    $url_list = is_array($_POST['url_list']) ? $_POST['url_list'] : [];
 | 
						|
    $first_letter_user = $_POST['first_letter_user'];
 | 
						|
 | 
						|
    if (1 == $form_sent) {
 | 
						|
        if (0 == count($users) || 0 == count($url_list)) {
 | 
						|
            echo Display::return_message(
 | 
						|
                get_lang('You must select at least one user and one URL'),
 | 
						|
                'error'
 | 
						|
            );
 | 
						|
        } else {
 | 
						|
            UrlManager::add_users_to_urls($users, $url_list);
 | 
						|
            echo Display::return_message(get_lang('The user accounts are now attached to the URL'), 'confirm');
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
/*	Display GUI	*/
 | 
						|
if (empty($first_letter_user)) {
 | 
						|
    $sql = "SELECT count(*) as nb_users FROM $tbl_user WHERE active <> ".USER_SOFT_DELETED;
 | 
						|
    $result = Database::query($sql);
 | 
						|
    $num_row = Database::fetch_array($result);
 | 
						|
    if ($num_row['nb_users'] > 1000) {
 | 
						|
        //if there are too much users to gracefully handle with the HTML select list,
 | 
						|
        // assign a default filter on users names
 | 
						|
        $first_letter_user = 'A';
 | 
						|
    }
 | 
						|
    unset($result);
 | 
						|
}
 | 
						|
$first_letter_user_lower = Database::escape_string(api_strtolower($first_letter_user));
 | 
						|
 | 
						|
$target_name = api_sort_by_first_name() ? 'firstname' : 'lastname';
 | 
						|
$target_name = 'lastname';
 | 
						|
$sql = "SELECT id, lastname, firstname, username FROM $tbl_user
 | 
						|
	    WHERE active <> ".USER_SOFT_DELETED." AND ".$target_name." LIKE '".$first_letter_user_lower."%' OR ".$target_name." LIKE '".$first_letter_user_lower."%'
 | 
						|
		ORDER BY ".(count($users) > 0 ? '(id IN('.implode(',', $users).')) DESC,' : '').' '.$target_name;
 | 
						|
$result = Database::query($sql);
 | 
						|
$db_users = Database::store_result($result);
 | 
						|
unset($result);
 | 
						|
 | 
						|
$sql = "SELECT id, url FROM $tbl_access_url  WHERE active=1 ORDER BY url";
 | 
						|
$result = Database::query($sql);
 | 
						|
$db_urls = Database::store_result($result);
 | 
						|
unset($result);
 | 
						|
?>
 | 
						|
 | 
						|
<form name="formulaire" method="post" action="<?php echo api_get_self(); ?>" style="margin:0px;">
 | 
						|
 <input type="hidden" name="form_sent" value="1"/>
 | 
						|
  <table border="0" cellpadding="5" cellspacing="0" width="100%">
 | 
						|
   <tr>
 | 
						|
    <td width="40%" align="center">
 | 
						|
     <b><?php echo get_lang('User list'); ?></b>
 | 
						|
     <br/><br/>
 | 
						|
     <?php echo get_lang('Select').' '; echo 'firstname' == $target_name ? get_lang('First name') : get_lang('Last name'); ?>
 | 
						|
     <select name="first_letter_user" onchange="javascript:document.formulaire.form_sent.value='2'; document.formulaire.submit();">
 | 
						|
      <option value="">--</option>
 | 
						|
      <?php
 | 
						|
        echo Display :: get_alphabet_options($first_letter_user);
 | 
						|
        ?>
 | 
						|
     </select>
 | 
						|
    </td>
 | 
						|
        <td width="20%"> </td>
 | 
						|
    <td width="40%" align="center">
 | 
						|
     <b><?php echo get_lang('URL list'); ?> :</b>
 | 
						|
    </td>
 | 
						|
   </tr>
 | 
						|
   <tr>
 | 
						|
    <td width="40%" align="center">
 | 
						|
     <select name="user_list[]" multiple="multiple" size="20" style="width:380px;">
 | 
						|
        <?php
 | 
						|
        foreach ($db_users as $user) {
 | 
						|
            ?>
 | 
						|
            <option value="<?php echo $user['id']; ?>" <?php if (in_array($user['id'], $users)) {
 | 
						|
                echo 'selected="selected"';
 | 
						|
            } ?>>
 | 
						|
            <?php echo api_get_person_name($user['firstname'], $user['lastname']).' ('.$user['username'].')'; ?>
 | 
						|
            </option>
 | 
						|
        <?php
 | 
						|
        }
 | 
						|
        ?>
 | 
						|
    </select>
 | 
						|
   </td>
 | 
						|
   <td width="20%" valign="middle" align="center">
 | 
						|
    <button type="submit" class="add"> <?php echo get_lang('Add users to that URL'); ?> </button>
 | 
						|
   </td>
 | 
						|
   <td width="40%" align="center">
 | 
						|
    <select name="url_list[]" multiple="multiple" size="20" style="width:230px;">
 | 
						|
		<?php
 | 
						|
        foreach ($db_urls as $url_obj) {
 | 
						|
            ?>
 | 
						|
			<option value="<?php echo $url_obj['id']; ?>" <?php if (in_array($url_obj['id'], $url_list)) {
 | 
						|
                echo 'selected="selected"';
 | 
						|
            } ?>>
 | 
						|
                <?php echo $url_obj['url']; ?>
 | 
						|
			</option>
 | 
						|
			<?php
 | 
						|
        }
 | 
						|
        ?>
 | 
						|
    </select>
 | 
						|
   </td>
 | 
						|
  </tr>
 | 
						|
 </table>
 | 
						|
</form>
 | 
						|
<?php
 | 
						|
 | 
						|
Display :: display_footer();
 | 
						|
 |