mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-01 20:04:51 +02:00
feature 731: permissions at image level
- possibility to change image level from picture_modify - language change "Public" to "---" - possibility to sort users by level on user_list page git-svn-id: http://piwigo.org/svn/trunk@2090 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
+8
-3
@@ -179,7 +179,9 @@ check_status(ACCESS_ADMINISTRATOR);
|
||||
|
||||
$page['order_by_items'] = array(
|
||||
'id' => $lang['registration_date'],
|
||||
'username' => $lang['Username']
|
||||
'username' => $lang['Username'],
|
||||
'level' => l10n('Privacy level'),
|
||||
'language' => l10n('language'),
|
||||
);
|
||||
|
||||
$page['direction_items'] = array(
|
||||
@@ -830,7 +832,10 @@ foreach ($visible_user_list as $num => $local_user)
|
||||
}
|
||||
|
||||
$properties = array();
|
||||
$properties[] = l10n( sprintf('Level %d', $local_user['level']) );
|
||||
if ( $local_user['level'] != 0 )
|
||||
{
|
||||
$properties[] = l10n( sprintf('Level %d', $local_user['level']) );
|
||||
}
|
||||
$properties[] =
|
||||
(isset($local_user['enabled_high']) and ($local_user['enabled_high'] == 'true'))
|
||||
? $lang['is_high_enabled'] : $lang['is_high_disabled'];
|
||||
@@ -853,7 +858,7 @@ foreach ($visible_user_list as $num => $local_user)
|
||||
? '<BR />['.l10n('adviser').']' : ''),
|
||||
'EMAIL' => get_email_address_as_display_text($local_user['email']),
|
||||
'GROUPS' => $groups_string,
|
||||
'PROPERTIES' => implode( ',', $properties),
|
||||
'PROPERTIES' => implode( ', ', $properties),
|
||||
)
|
||||
);
|
||||
trigger_action('loc_assign_block_var_local_user_list', $local_user);
|
||||
|
||||
Reference in New Issue
Block a user