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&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&depth=2&ipaddress=$user[ipaddress]&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
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&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&depth=2&ipaddress=$user[ipaddress]&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