View Single Post
  #33  
Old 10-27-2008, 02:43 PM
Adult SEO's Avatar
Adult SEO Adult SEO is offline
 
Join Date: May 2006
Location: The Netherlands
Posts: 291
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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'$vbulletinERRTYPE_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'], 1true);
    
    
$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()));

Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01658 seconds
  • Memory Usage 1,842KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_html
  • (4)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete