Users Awaiting Approval

xF1 Add-on Users Awaiting Approval 1.5

No permission to download
Compatible XF Versions
  1. 1.2
  2. 1.3
  3. 1.4
  4. 1.5
Description:

Adds Custom User Fields to Users Awaiting Approval page.

(Example of Users Awaiting Approval page)

xenforo_com_community_attachments_pic001_jpg_92776__.jpg


(Example of Options page)

xenforo_com_community_attachments_pic002_jpg_134575__.jpg


Features:
  • Custom User Fields can be added.
  • Shows location based on IP address.
Installation:
  1. Download usersawaitingapproval_v1.5.zip and unzip it.
  2. Upload the Andy folder to your server. The correct location is library/Andy.
  3. From your Admin Control Panel, go to the "Install Add-on" page.
  4. Upload the addon-UsersAwaitingApproval_v1.5.xml file
  5. Click the Install Add-on button.
Template:

The andy_user_moderate template will need to be edited. This requires development mode which is done by adding the following to your config.php file:

PHP:
$config['debug'] = true;
Example of andy_user_moderate template which is located here:

Admin CP -> Development -> Admin Templates

Code:
<xen:title>{xen:phrase users_awaiting_approval}</xen:title>

<xen:form action="{xen:adminlink 'users/moderated/update'}">
<xen:foreach loop="$users" value="$user">
<fieldset>
<xen:controlunit label="{xen:phrase user}:"><a href="{xen:adminlink users/edit, $user}" target="_blank">{$user.username}</a> ({$user.email})</xen:controlunit>
<xen:controlunit label="{xen:phrase joined}:"><xen:datetime time="{$user.register_date}" /></xen:controlunit>
<xen:if is="{$user.ip}">
<xen:controlunit label="{xen:phrase ip}:"><a href="{xen:link misc/ip-info, '', 'ip={$user.ip}'}" target="_blank">{$user.ip}</a> <xen:if is="{$user.ipHost}">({$user.ipHost})</xen:if></xen:controlunit>
</xen:if>

<xen:controlunit label="Location based on IP:">{$user.location}</xen:controlunit>
<xen:controlunit label="Name:">{$user.customFields.name}</xen:controlunit>
<xen:controlunit label="Motorcycle:">{$user.customFields.motorcycle}</xen:controlunit>

<xen:if is="{$user.spamDetails}">
<xen:controlunit label="{xen:phrase spam_log}:"><ul>
<xen:foreach loop="{$user.spamDetails}" value="{$detail}">
<li>{xen:escape $detail, false}</li>
</xen:foreach>
</ul></xen:controlunit>
</xen:if>
<xen:radiounit label="{xen:phrase action}:" name="users[{$user.user_id}][action]">
<xen:option value="none" selected="true">{xen:phrase do_nothing}</xen:option>
<xen:option value="approve">{xen:phrase approve}</xen:option>
<xen:option value="reject">
<xen:label>{xen:phrase reject_and_delete_with_rejection_reason}:</xen:label>
<xen:textbox placeholder="{xen:phrase optional}" name="users[{$user.user_id}][reject_reason]" size="45" />
</xen:option>
</xen:radiounit>
<xen:checkboxunit label="">
<xen:option name="users[{$user.user_id}][notify]" selected="!{$user.spamDetails}">{xen:phrase notify_user_if_action_was_taken}</xen:option>
</xen:checkboxunit>
</fieldset>
</xen:foreach>

<xen:submitunit save="{xen:phrase process_users}" />
</xen:form>
The code shown in red is what I use on my forum. If you don't have any custom user fields then delete this code. Otherwise if you wish to show your own custom user field code(s) which are filled in during registration, you will want to use my example and edit the template code to match your custom user Field ID names. For example change "name" and "motorcycle" to Field ID's that you use.

Database:

A table called xf_register_location is created in your database.
Author
AnimeHaxor
Size
6.2 KB
Extension
zip
Downloads
6
Views
1,374
First release
Last update

More resources from AnimeHaxor

729Threads
2,274Messages
61,395Members
masaratiLatest member
Back