[svn r19365] add photos to user list

skala
Juan Carlos Raña 16 years ago
parent 8f28a920cb
commit 7cbd53d11c
  1. 20
      main/user/user.php

@ -1,4 +1,4 @@
<?php // $Id: user.php 18319 2009-02-07 00:03:42Z herodoto $
<?php // $Id: user.php 19365 2009-03-26 21:44:32Z herodoto $
/*
==============================================================================
Dokeos - elearning and course management software
@ -456,6 +456,13 @@ function get_user_data($from, $number_of_items, $column, $direction) {
$temp=array();
$temp[] = $user_id;
$image_path = UserManager::get_user_picture_path_by_id($user_id,'web',false, true);
$image_repository = $image_path['dir'];
$existing_image = $image_path['file'];
$photo= '<center><img src="'.$image_repository.$existing_image.'" alt="'.$o_course_user['firstname'].' '.$o_course_user['lastname'].'" width="22" height="22" title="'.$o_course_user['firstname'].' '.$o_course_user['lastname'].'" /></center>';
$temp[] = $photo;
$temp[] = $o_course_user['firstname'];
$temp[] = $o_course_user['lastname'];
@ -481,6 +488,13 @@ function get_user_data($from, $number_of_items, $column, $direction) {
$temp[] = $user_id;
} else {
$temp=array();
$image_path = UserManager::get_user_picture_path_by_id($user_id,'web',false, true);
$image_repository = $image_path['dir'];
$existing_image = $image_path['file'];
$photo= '<center><img src="'.$image_repository.$existing_image.'" alt="'.$o_course_user['firstname'].' '.$o_course_user['lastname'].'" width="22" height="22" title="'.$o_course_user['firstname'].' '.$o_course_user['lastname'].'" /></center>';
$temp[] = $photo;
$temp[] = $o_course_user['firstname'];
$temp[] = $o_course_user['lastname'];
$temp[] = $o_course_user['role'];
@ -567,7 +581,7 @@ $header_nr = 0;
if ( api_is_allowed_to_edit()) {
$table->set_header($header_nr++, '', false);
}
$table->set_header($header_nr++, get_lang('Photo'),false);
$table->set_header($header_nr++, get_lang('FirstName'));
$table->set_header($header_nr++, get_lang('LastName'));
$table->set_header($header_nr++, get_lang('Description'),false);
@ -579,7 +593,7 @@ if ( api_is_allowed_to_edit()) {
$table->set_header($header_nr++, get_lang('Tutor'),false);
$table->set_header($header_nr++, get_lang('CourseManager'),false);
$table->set_header($header_nr++, get_lang('Active'),false);
$table->set_column_filter(8,'active_filter');
$table->set_column_filter(9,'active_filter');
}
//actions column

Loading…
Cancel
Save