Skip to content

Instantly share code, notes, and snippets.

@xyulex
Created February 28, 2018 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xyulex/667a6361267264b950fcbffdd4df7e4c to your computer and use it in GitHub Desktop.
Save xyulex/667a6361267264b950fcbffdd4df7e4c to your computer and use it in GitHub Desktop.
MOODLE: Add column in user list
Añadir columna 'user id' en /admin/user.php
1)
$CFG->showuseridentity = 'id';
ó
2)
$table->head[] = 'Id';
$row[] = $user->id;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment