484 lines
16 KiB
PHP
484 lines
16 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Admin page callback file for the user module.
|
|
*/
|
|
|
|
/**
|
|
* Page callback: Generates the appropriate user administration form.
|
|
*
|
|
* This function generates the user registration, multiple user cancellation,
|
|
* or filtered user list admin form, depending on the argument and the POST
|
|
* form values.
|
|
*
|
|
* @param string $callback_arg
|
|
* (optional) Indicates which form to build. Defaults to '', which will
|
|
* trigger the user filter form. If the POST value 'op' is present, this
|
|
* function uses that value as the callback argument.
|
|
*
|
|
* @return string
|
|
* A renderable form array for the respective request.
|
|
*/
|
|
function user_admin($callback_arg = '') {
|
|
$op = isset($_POST['op']) ? $_POST['op'] : $callback_arg;
|
|
|
|
switch ($op) {
|
|
case t('Create new account'):
|
|
case 'create':
|
|
$account = entity_create('user', array());
|
|
$build['user_register'] = entity_get_form($account, 'register');
|
|
break;
|
|
default:
|
|
if (!empty($_POST['accounts']) && isset($_POST['operation']) && ($_POST['operation'] == 'cancel')) {
|
|
$build['user_multiple_cancel_confirm'] = drupal_get_form('user_multiple_cancel_confirm');
|
|
}
|
|
else {
|
|
$build['user_filter_form'] = drupal_get_form('user_filter_form');
|
|
$build['user_admin_account'] = drupal_get_form('user_admin_account');
|
|
}
|
|
}
|
|
return $build;
|
|
}
|
|
|
|
/**
|
|
* Form builder; Return form for user administration filters.
|
|
*
|
|
* @ingroup forms
|
|
* @see user_filter_form_submit()
|
|
*/
|
|
function user_filter_form() {
|
|
$session = isset($_SESSION['user_overview_filter']) ? $_SESSION['user_overview_filter'] : array();
|
|
$filters = user_filters();
|
|
|
|
$i = 0;
|
|
$form['filters'] = array(
|
|
'#type' => 'details',
|
|
'#title' => t('Show only users where'),
|
|
'#theme' => 'exposed_filters__user',
|
|
);
|
|
foreach ($session as $filter) {
|
|
list($type, $value) = $filter;
|
|
if ($type == 'permission') {
|
|
// Merge arrays of module permissions into one.
|
|
// Slice past the first element '[any]' whose value is not an array.
|
|
$options = call_user_func_array('array_merge', array_slice($filters[$type]['options'], 1));
|
|
$value = $options[$value];
|
|
}
|
|
else {
|
|
$value = $filters[$type]['options'][$value];
|
|
}
|
|
$t_args = array('%property' => $filters[$type]['title'], '%value' => $value);
|
|
if ($i++) {
|
|
$form['filters']['current'][] = array('#markup' => t('and where %property is %value', $t_args));
|
|
}
|
|
else {
|
|
$form['filters']['current'][] = array('#markup' => t('%property is %value', $t_args));
|
|
}
|
|
}
|
|
|
|
$form['filters']['status'] = array(
|
|
'#type' => 'container',
|
|
'#attributes' => array('class' => array('clearfix')),
|
|
'#prefix' => ($i ? '<div class="additional-filters">' . t('and where') . '</div>' : ''),
|
|
);
|
|
$form['filters']['status']['filters'] = array(
|
|
'#type' => 'container',
|
|
'#attributes' => array('class' => array('filters')),
|
|
);
|
|
foreach ($filters as $key => $filter) {
|
|
$form['filters']['status']['filters'][$key] = array(
|
|
'#type' => 'select',
|
|
'#options' => $filter['options'],
|
|
'#title' => $filter['title'],
|
|
'#default_value' => '[any]',
|
|
);
|
|
}
|
|
|
|
$form['filters']['status']['actions'] = array(
|
|
'#type' => 'actions',
|
|
'#attributes' => array('class' => array('container-inline')),
|
|
);
|
|
$form['filters']['status']['actions']['submit'] = array(
|
|
'#type' => 'submit',
|
|
'#value' => (count($session) ? t('Refine') : t('Filter')),
|
|
);
|
|
if (count($session)) {
|
|
$form['filters']['status']['actions']['undo'] = array(
|
|
'#type' => 'submit',
|
|
'#value' => t('Undo'),
|
|
);
|
|
$form['filters']['status']['actions']['reset'] = array(
|
|
'#type' => 'submit',
|
|
'#value' => t('Reset'),
|
|
);
|
|
}
|
|
|
|
drupal_add_library('system', 'drupal.form');
|
|
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Process result from user administration filter form.
|
|
*/
|
|
function user_filter_form_submit($form, &$form_state) {
|
|
$op = $form_state['values']['op'];
|
|
$filters = user_filters();
|
|
switch ($op) {
|
|
case t('Filter'):
|
|
case t('Refine'):
|
|
// Apply every filter that has a choice selected other than 'any'.
|
|
foreach ($filters as $filter => $options) {
|
|
if (isset($form_state['values'][$filter]) && $form_state['values'][$filter] != '[any]') {
|
|
$_SESSION['user_overview_filter'][] = array($filter, $form_state['values'][$filter]);
|
|
}
|
|
}
|
|
break;
|
|
case t('Undo'):
|
|
array_pop($_SESSION['user_overview_filter']);
|
|
break;
|
|
case t('Reset'):
|
|
$_SESSION['user_overview_filter'] = array();
|
|
break;
|
|
case t('Update'):
|
|
return;
|
|
}
|
|
|
|
$form_state['redirect'] = 'admin/people';
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Form builder; User administration page.
|
|
*
|
|
* @ingroup forms
|
|
* @see user_admin_account_validate()
|
|
* @see user_admin_account_submit()
|
|
*/
|
|
function user_admin_account() {
|
|
|
|
$header = array(
|
|
'username' => array('data' => t('Username'), 'field' => 'u.name'),
|
|
'status' => array('data' => t('Status'), 'field' => 'u.status', 'class' => array(RESPONSIVE_PRIORITY_LOW)),
|
|
'roles' => array('data' => t('Roles'), 'class' => array(RESPONSIVE_PRIORITY_LOW)),
|
|
'member_for' => array('data' => t('Member for'), 'field' => 'u.created', 'sort' => 'desc', 'class' => array(RESPONSIVE_PRIORITY_LOW)),
|
|
'access' => array('data' => t('Last access'), 'field' => 'u.access', 'class' => array(RESPONSIVE_PRIORITY_LOW)),
|
|
'operations' => t('Operations'),
|
|
);
|
|
|
|
$query = db_select('users', 'u');
|
|
$query->condition('u.uid', 0, '<>');
|
|
user_build_filter_query($query);
|
|
|
|
$count_query = clone $query;
|
|
$count_query->addExpression('COUNT(u.uid)');
|
|
|
|
$query = $query
|
|
->extend('Drupal\Core\Database\Query\PagerSelectExtender')
|
|
->extend('Drupal\Core\Database\Query\TableSortExtender');
|
|
$query
|
|
->fields('u', array('uid', 'name', 'status', 'created', 'access'))
|
|
->limit(50)
|
|
->orderByHeader($header)
|
|
->setCountQuery($count_query);
|
|
$result = $query->execute();
|
|
|
|
$form['options'] = array(
|
|
'#type' => 'details',
|
|
'#title' => t('Update options'),
|
|
'#attributes' => array('class' => array('container-inline')),
|
|
);
|
|
$options = array();
|
|
foreach (module_invoke_all('user_operations') as $operation => $array) {
|
|
$options[$operation] = $array['label'];
|
|
}
|
|
$form['options']['operation'] = array(
|
|
'#type' => 'select',
|
|
'#title' => t('Operation'),
|
|
'#title_display' => 'invisible',
|
|
'#options' => $options,
|
|
'#default_value' => 'unblock',
|
|
);
|
|
$options = array();
|
|
$form['options']['submit'] = array(
|
|
'#type' => 'submit',
|
|
'#value' => t('Update'),
|
|
);
|
|
|
|
$destination = drupal_get_destination();
|
|
$status = array(t('blocked'), t('active'));
|
|
$roles = array_map('check_plain', user_role_names(TRUE));
|
|
$accounts = array();
|
|
foreach ($result as $account) {
|
|
$account = user_load($account->uid);
|
|
$users_roles = array();
|
|
$roles_result = db_query('SELECT rid FROM {users_roles} WHERE uid = :uid', array(':uid' => $account->uid));
|
|
foreach ($roles_result as $user_role) {
|
|
$users_roles[] = $roles[$user_role->rid];
|
|
}
|
|
asort($users_roles);
|
|
|
|
$options[$account->uid] = array(
|
|
'username' => theme('username', array('account' => $account)),
|
|
'status' => $status[$account->status],
|
|
'roles' => theme('item_list', array('items' => $users_roles)),
|
|
'member_for' => format_interval(REQUEST_TIME - $account->created),
|
|
'access' => $account->access ? t('@time ago', array('@time' => format_interval(REQUEST_TIME - $account->access))) : t('never'),
|
|
);
|
|
$links = array();
|
|
$links['edit'] = array(
|
|
'title' => t('Edit'),
|
|
'href' => 'user/' . $account->uid . '/edit',
|
|
'query' => $destination,
|
|
);
|
|
if (module_invoke('translation_entity', 'translate_access', $account)) {
|
|
$links['translate'] = array(
|
|
'title' => t('Translate'),
|
|
'href' => 'user/' . $account->uid . '/translations',
|
|
'query' => $destination,
|
|
);
|
|
}
|
|
$options[$account->uid]['operations']['data'] = array(
|
|
'#type' => 'operations',
|
|
'#links' => $links,
|
|
);
|
|
|
|
$options[$account->uid]['title']['data']['#title'] = check_plain($account->name);
|
|
|
|
}
|
|
|
|
$form['accounts'] = array(
|
|
'#type' => 'tableselect',
|
|
'#header' => $header,
|
|
'#options' => $options,
|
|
'#empty' => t('No people available.'),
|
|
);
|
|
$form['pager'] = array('#markup' => theme('pager'));
|
|
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Submit the user administration update form.
|
|
*/
|
|
function user_admin_account_submit($form, &$form_state) {
|
|
$operations = module_invoke_all('user_operations', $form, $form_state);
|
|
$operation = $operations[$form_state['values']['operation']];
|
|
// Filter out unchecked accounts.
|
|
$accounts = array_filter($form_state['values']['accounts']);
|
|
if ($function = $operation['callback']) {
|
|
// Add in callback arguments if present.
|
|
if (isset($operation['callback arguments'])) {
|
|
$args = array_merge(array($accounts), $operation['callback arguments']);
|
|
}
|
|
else {
|
|
$args = array($accounts);
|
|
}
|
|
call_user_func_array($function, $args);
|
|
|
|
drupal_set_message(t('The update has been performed.'));
|
|
}
|
|
}
|
|
|
|
function user_admin_account_validate($form, &$form_state) {
|
|
$form_state['values']['accounts'] = array_filter($form_state['values']['accounts']);
|
|
if (count($form_state['values']['accounts']) == 0) {
|
|
form_set_error('', t('No users selected.'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Menu callback: administer permissions.
|
|
*
|
|
* @ingroup forms
|
|
* @see user_admin_permissions_submit()
|
|
* @see theme_user_admin_permissions()
|
|
*/
|
|
function user_admin_permissions($form, $form_state, $rid = NULL) {
|
|
|
|
// Retrieve role names for columns.
|
|
$role_names = user_role_names();
|
|
if (isset($rid)) {
|
|
$role_names = array($rid => $role_names[$rid]);
|
|
}
|
|
// Fetch permissions for all roles or the one selected role.
|
|
$role_permissions = user_role_permissions($role_names);
|
|
|
|
// Store $role_names for use when saving the data.
|
|
$form['role_names'] = array(
|
|
'#type' => 'value',
|
|
'#value' => $role_names,
|
|
);
|
|
// Render role/permission overview:
|
|
$options = array();
|
|
$module_info = system_get_info('module');
|
|
$hide_descriptions = system_admin_compact_mode();
|
|
|
|
// Get a list of all the modules implementing a hook_permission() and sort by
|
|
// display name.
|
|
$modules = array();
|
|
foreach (module_implements('permission') as $module) {
|
|
$modules[$module] = $module_info[$module]['name'];
|
|
}
|
|
asort($modules);
|
|
|
|
foreach ($modules as $module => $display_name) {
|
|
if ($permissions = module_invoke($module, 'permission')) {
|
|
$form['permission'][] = array(
|
|
'#markup' => $module_info[$module]['name'],
|
|
'#id' => $module,
|
|
);
|
|
foreach ($permissions as $perm => $perm_item) {
|
|
// Fill in default values for the permission.
|
|
$perm_item += array(
|
|
'description' => '',
|
|
'restrict access' => FALSE,
|
|
'warning' => !empty($perm_item['restrict access']) ? t('Warning: Give to trusted roles only; this permission has security implications.') : '',
|
|
);
|
|
$options[$perm] = '';
|
|
$form['permission'][$perm] = array(
|
|
'#type' => 'item',
|
|
'#markup' => $perm_item['title'],
|
|
'#description' => theme('user_permission_description', array('permission_item' => $perm_item, 'hide' => $hide_descriptions)),
|
|
);
|
|
foreach ($role_names as $rid => $name) {
|
|
// Builds arrays for checked boxes for each role
|
|
if (isset($role_permissions[$rid][$perm])) {
|
|
$status[$rid][] = $perm;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Have to build checkboxes here after checkbox arrays are built
|
|
foreach ($role_names as $rid => $name) {
|
|
$form['checkboxes'][$rid] = array(
|
|
'#type' => 'checkboxes',
|
|
'#options' => $options,
|
|
'#default_value' => isset($status[$rid]) ? $status[$rid] : array(),
|
|
'#attributes' => array('class' => array('rid-' . $rid)),
|
|
);
|
|
$form['role_names'][$rid] = array('#markup' => check_plain($name), '#tree' => TRUE);
|
|
}
|
|
|
|
$form['actions'] = array('#type' => 'actions');
|
|
$form['actions']['submit'] = array('#type' => 'submit', '#value' => t('Save permissions'));
|
|
|
|
$form['#attached']['library'][] = array('user', 'drupal.user.permissions');
|
|
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Save permissions selected on the administer permissions page.
|
|
*
|
|
* @see user_admin_permissions()
|
|
*/
|
|
function user_admin_permissions_submit($form, &$form_state) {
|
|
foreach ($form_state['values']['role_names'] as $rid => $name) {
|
|
user_role_change_permissions($rid, $form_state['values'][$rid]);
|
|
}
|
|
|
|
drupal_set_message(t('The changes have been saved.'));
|
|
|
|
// Clear the cached pages and blocks.
|
|
cache_invalidate_tags(array('content' => TRUE));
|
|
}
|
|
|
|
/**
|
|
* Returns HTML for the administer permissions page.
|
|
*
|
|
* @param $variables
|
|
* An associative array containing:
|
|
* - form: A render element representing the form.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
function theme_user_admin_permissions($variables) {
|
|
$form = $variables['form'];
|
|
|
|
$roles = user_role_names();
|
|
foreach (element_children($form['permission']) as $key) {
|
|
$row = array();
|
|
// Module name
|
|
if (is_numeric($key)) {
|
|
$row[] = array('data' => drupal_render($form['permission'][$key]), 'class' => array('module'), 'id' => 'module-' . $form['permission'][$key]['#id'], 'colspan' => count($form['role_names']['#value']) + 1);
|
|
}
|
|
else {
|
|
// Permission row.
|
|
$row[] = array(
|
|
'data' => drupal_render($form['permission'][$key]),
|
|
'class' => array('permission'),
|
|
);
|
|
foreach (element_children($form['checkboxes']) as $rid) {
|
|
$form['checkboxes'][$rid][$key]['#title'] = $roles[$rid] . ': ' . $form['permission'][$key]['#markup'];
|
|
$form['checkboxes'][$rid][$key]['#title_display'] = 'invisible';
|
|
$row[] = array('data' => drupal_render($form['checkboxes'][$rid][$key]), 'class' => array('checkbox'));
|
|
}
|
|
}
|
|
$rows[] = $row;
|
|
}
|
|
$header[] = (t('Permission'));
|
|
foreach (element_children($form['role_names']) as $rid) {
|
|
$header[] = array('data' => drupal_render($form['role_names'][$rid]), 'class' => array('checkbox'));
|
|
}
|
|
$output = theme('system_compact_link');
|
|
$output .= theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => array('id' => 'permissions')));
|
|
$output .= drupal_render_children($form);
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Returns HTML for an individual permission description.
|
|
*
|
|
* @param $variables
|
|
* An associative array containing:
|
|
* - permission_item: An associative array representing the permission whose
|
|
* description is being themed. Useful keys include:
|
|
* - description: The text of the permission description.
|
|
* - warning: A security-related warning message about the permission (if
|
|
* there is one).
|
|
* - hide: A boolean indicating whether or not the permission description was
|
|
* requested to be hidden rather than shown.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
function theme_user_permission_description($variables) {
|
|
if (!$variables['hide']) {
|
|
$description = array();
|
|
$permission_item = $variables['permission_item'];
|
|
if (!empty($permission_item['description'])) {
|
|
$description[] = $permission_item['description'];
|
|
}
|
|
if (!empty($permission_item['warning'])) {
|
|
$description[] = '<em class="permission-warning">' . $permission_item['warning'] . '</em>';
|
|
}
|
|
if (!empty($description)) {
|
|
return implode(' ', $description);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Page callback: Lists roles and allows to reorder them.
|
|
*
|
|
* @see user_menu()
|
|
*/
|
|
function user_admin_roles_list() {
|
|
return Drupal::entityManager()
|
|
->getListController('user_role')->render();
|
|
}
|
|
|
|
/**
|
|
* Page callback: Presents the role creation form.
|
|
*
|
|
* @see user_menu()
|
|
*/
|
|
function user_admin_role_add() {
|
|
drupal_set_title(t('Add role'));
|
|
$role = entity_create('user_role', array());
|
|
return entity_get_form($role);
|
|
}
|