Log in

View Full Version : Quick question on Users Awaiting Moderation customization


HMBeaty
04-18-2007, 03:23 AM
I am currently in the process of customizing the "Users Awaiting Moderation" in the admincp where it lists the users User Name, Email, and IP.

I am in the process of adding a couple of fields on it and stuck on the Age portion.

I looked in the postbit to grab and show you what I'm looking for. In this portion of code

<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>

How and where is the $post[age] called?

I can't get the age to show up.

So far, I have this in my admincp/user.php file

print_table_header($vbphrase['users_awaiting_moderation'], 5);
print_cells_row(array(
$vbphrase['age'],
$vbphrase['username'],
$vbphrase['email'],
$vbphrase['ip_address'],
"<input type=\"button\" class=\"button\" value=\"" . $vbphrase['accept_all'] . "\"

onclick=\"js_check_radio(1)\" />
<input type=\"button\" class=\"button\" value=\"" . $vbphrase['delete_all'] . "\"

onclick=\"js_check_radio(-1)\" />
<input type=\"button\" class=\"button\" value=\"" . $vbphrase['ignore_all'] . "\"

onclick=\"js_check_radio(0)\" />"
), 0, 'thead', -3);
while ($user = $db->fetch_array($users))
{
$cell = array();
$cell[] = "$user[age]";
$cell[] = "<a href=\"user.php?" . $vbulletin->session->vars['sessionurl'] . "do=edit&amp;u=$user

[userid]\" target=\"_user\"><b>$user[username]</b></a>";
$cell[] = "<a href=\"mailto:$user[email]\">$user[email]</a>";
$cell[] = "<a href=\"usertools.php?" . $vbulletin->session->vars['sessionurl'] .

"do=doips&amp;depth=2&amp;ipaddress=$user[ipaddress]&amp;hash=" . CP_SESSIONHASH . "\" target=\"_user\">$user[ipaddress]

</a>";

Any help on this will be greatly appreciated.

Thanks

It's probably something obvious I'm looking over. It's late and I can't think clearly

Kungfu
04-18-2007, 03:51 AM
its probably not $post['age'] its most likely something like $post['field2']

HMBeaty
04-18-2007, 04:03 AM
No, because field2 is location

Dismounted
04-18-2007, 06:18 AM
$post['age'] is referring to the 'age' field of the user table.

HMBeaty
04-18-2007, 07:47 PM
$post['age'] is referring to the 'age' field of the user table.

Yeah, I kinda figured that. But how do I get the age to show up? What do I need to add and where?

Dismounted
04-19-2007, 06:09 AM
You need to query the database to retrieve the field.

HMBeaty
04-19-2007, 08:27 PM
Ok, what do I need to add and where? I'm not very experienced with PHP or MySQL queries. Thanks for your responses :)

Dismounted
04-20-2007, 09:42 AM
What do you currently have as your query with $users as the variable?