By kevinr on
On the 'admin/user/user/list' page, I would like to view users email addresses alongside with usernames, status, roles, etc. Could someone please help me on this?
Thanks!
On the 'admin/user/user/list' page, I would like to view users email addresses alongside with usernames, status, roles, etc. Could someone please help me on this?
Thanks!
Comments
Email address is visible at
Email address is visible at user/xxx/edit
xxx being the user number
what were looking to do is to
what were looking to do is to have all the emails in a list though, so we can arrange in ascending and descending order etc., like with the rest of the user data, any ideas?
Display email address on the user management page
In user module go to user.admin.inc file.
In this two function shown below
1.user_admin_account
2.theme_user_admin_account
With help of above two functions that content will be displayed in that you can add email there.
This seems to be doing the
This seems to be doing the job so far, but i cant get emails to actually output, I think its something to do with this code here
in the user_admin_account function. Any ideas?
I managed to fix it using
I managed to fix it using
$form['mail'][$account->uid] = array('#value' => $account->mail);Thanks for your help! :)I am trying to view emails in the user list too
Hi folks:
I am trying to view and sort the email address in the user management area too. I am not sure if I understand what was done and with what files. Can you break it down for me again?
Thanks.
use Views
http://drupal.org/project/views
Yep - as far s I recall,
Yep - as far s I recall, Views even comes with a user list pre-configured. It should be easy to adapt to what you want
Thanks, I'll check again.
My views seems to not have anything for it. I will have to check and see again. I might have an older version of views still. I also am using Organic Groups, so I am not sure if that might have altered something.
Yes, it looks like I need to get Views 2.9
Ok, well that should get me set. Thanks all.
I did this by going to this
I did this by going to this file... modules/user/user.admin.inc and make the following changes:
Around Line 132:
Around Lines 182:
Around Lines 916:
Hope this works for you.
Thanks
It helpful.
I thought about this simple way, and I did it.
BUT I want to create view or ALTER user theme - how should I do this - instead of changing core file user.admin.inc
Is there some lightweight module? Or should i write my own???
Please help me with this.
twitter: @landike