|
|
|
|
@ -1124,7 +1124,7 @@ $table = new SortableTable( |
|
|
|
|
(api_is_western_name_order() xor api_sort_by_first_name()) ? 3 : 2 |
|
|
|
|
); |
|
|
|
|
$table->set_additional_parameters($parameters); |
|
|
|
|
$table->set_header(0, '', false, 'width="18px"'); |
|
|
|
|
$table->set_header(0, ' ', false, 'width="18px"'); |
|
|
|
|
$table->set_header(1, get_lang('Photo'), false); |
|
|
|
|
$table->set_header(2, get_lang('OfficialCode')); |
|
|
|
|
|
|
|
|
|
@ -1138,10 +1138,10 @@ if (api_is_western_name_order()) { |
|
|
|
|
$table->set_header(5, get_lang('LoginName')); |
|
|
|
|
$table->set_header(6, get_lang('Email')); |
|
|
|
|
$table->set_header(7, get_lang('Profile')); |
|
|
|
|
$table->set_header(8, get_lang('Active'), true, 'width="15px"'); |
|
|
|
|
$table->set_header(9, get_lang('RegistrationDate'), true, 'width="90px"'); |
|
|
|
|
$table->set_header(10, get_lang('LatestLogin'), true, 'width="90px"'); |
|
|
|
|
$table->set_header(11, get_lang('Action'), false, 'width="220px"'); |
|
|
|
|
$table->set_header(8, get_lang('Active'), true); |
|
|
|
|
$table->set_header(9, get_lang('RegistrationDate'), true); |
|
|
|
|
$table->set_header(10, get_lang('LatestLogin'), true); |
|
|
|
|
$table->set_header(11, get_lang('Action'), false); |
|
|
|
|
|
|
|
|
|
$table->set_column_filter(3, 'user_filter'); |
|
|
|
|
$table->set_column_filter(4, 'user_filter'); |
|
|
|
|
@ -1149,6 +1149,7 @@ $table->set_column_filter(6, 'email_filter'); |
|
|
|
|
$table->set_column_filter(7, 'status_filter'); |
|
|
|
|
$table->set_column_filter(8, 'active_filter'); |
|
|
|
|
$table->set_column_filter(11, 'modify_filter'); |
|
|
|
|
$table->setColAttributes(10, ['class' => 'text-nowrap']); |
|
|
|
|
|
|
|
|
|
// Hide email column if login is email, to avoid column with same data |
|
|
|
|
if (api_get_setting('login_is_email') === 'true') { |
|
|
|
|
@ -1226,11 +1227,6 @@ if (0 == $table->get_total_number_of_items()) { |
|
|
|
|
); |
|
|
|
|
$column++; |
|
|
|
|
} |
|
|
|
|
$table->updateRowAttributes( |
|
|
|
|
$row, |
|
|
|
|
$row % 2 ? 'class="row_even"' : 'class="row_odd"', |
|
|
|
|
true |
|
|
|
|
); |
|
|
|
|
$row++; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|