1.
The registration form:
HTML Code:
<form action="register.php?do=addmember" name="register" method="post" onsubmit="return verify_passwords(password, passwordconfirm);" ENCTYPE="multipart/form-data">
The upload box:
HTML Code:
<if condition="$show[avatar_form]">
<fieldset class="fieldset">
<legend>$vbphrase[regava_custom_avatar]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td>
$vbphrase[regava_upload_custom_avatar]
<if condition="$vboptions[regava_show_url]">$vbphrase[regava_enterurl]</if>
<if condition="$vboptions[regava_show_upload]">$vbphrase[regava_upload]</if>
</td>
</tr>
<if condition="$vboptions[regava_show_url]">
<tr>
<td>
$vbphrase[regava_enter_avatar_url]<br />
<input type="text" class="bginput" name="avatarurl" value="http://www." size="50" dir="ltr" />
</td>
</tr>
</if>
<if condition="$vboptions[regava_show_upload]">
<tr>
<td>
<input type="hidden" name="MAX_FILE_SIZE" value="$inimaxattach" />
$vbphrase[regava_upload_avatar_from_computer]<br />
<input type="file" class="bginput" name="upload" size="50" />
</td>
</tr>
</if>
</table>
</fieldset>
</if>
2.
Plugins:
register_addmember_process
PHP Code:
// register_addmember_process
if($avatar_form)
{
$vbulletin->input->clean_array_gpc('p', array(
'avatarurl' => TYPE_STR,
));
$vbulletin->input->clean_gpc('f', 'upload', TYPE_FILE);
// begin custom avatar code
require_once(DIR . '/includes/class_upload.php');
require_once(DIR . '/includes/class_image.php');
$upload = new vB_Upload_Userpic($vbulletin);
$upload->data =& datamanager_init('Userpic_Avatar', $vbulletin, ERRTYPE_STANDARD, 'userpic');
$upload->image =& vB_Image::fetch_library($vbulletin);
$upload->maxwidth = $reg_perms['avatarmaxwidth'];
$upload->maxheight = $reg_perms['avatarmaxheight'];
$upload->maxuploadsize = $reg_perms['avatarmaxsize'];
$upload->allowanimation = ($reg_perms['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['cananimateavatar']) ? true : false;
}
register_form_complete
PHP Code:
//register_form_complete
if($avatar_form)
{
$reg_perms['avatarmaxsize'] = vb_number_format($reg_perms['avatarmaxsize'], 1, true);
$maxnote = '';
if($reg_perms['avatarmaxsize'] AND ($reg_perms['avatarmaxwidth'] OR $reg_perms['avatarmaxheight']))
$maxnote = construct_phrase(fetch_phrase('note_maximum_size_x_y_or_z', 11), $reg_perms['avatarmaxwidth'], $reg_perms['avatarmaxheight'], $reg_perms['avatarmaxsize']);
else if ($reg_perms['avatarmaxsize'])
$maxnote = construct_phrase(fetch_phrase('note_maximum_size_x', 11), $reg_perms['avatarmaxsize']);
else if ($reg_perms['avatarmaxwidth'] OR $reg_perms['avatarmaxheight'])
$maxnote = construct_phrase(fetch_phrase('note_maximum_size_x_y_pixels', 11), $reg_perms['avatarmaxwidth'], $reg_perms['avatarmaxheight']);
$show['maxnote'] = (!empty($maxnote)) ? true : false;
}
register_start
PHP Code:
//register_start
// Get registered usergroup perms
$reg_perms =& $vbulletin->usergroupcache[2];
$ava_max_height = $reg_perms['avatarmaxheight'];
$ava_max_width = $reg_perms['avatarmaxwidth'];
$ava_max_size = $reg_perms['avatarmaxsize'];
$ava_can_use = $reg_perms['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['canuseavatar'];
$ava_can_anim = $reg_perms['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['cananimateavatar'];
if(
($vbulletin->options['regava_show_url'] || $vbulletin->options['regava_show_upload']) &&
$vbulletin->options['avatarenabled'] && $ava_can_use
)
{
$avatar_form = true;
$show['avatar_form'] = true;
}
register_addmember_complete
PHP Code:
// register_addmember_complete
if($avatar_form && isset($upload))
{
// Need up to date info
$newuserinfo = fetch_userinfo($vbulletin->userinfo['userid'], 16);
$vbulletin->userinfo = $newuserinfo;
if(!$upload->process_upload($vbulletin->GPC['avatarurl']))
$ava_failed = true;
eval(standard_error($upload->fetch_error()));
}