vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Trying to figure out if user has specified avatar (https://vborg.vbsupport.ru/showthread.php?t=142185)

brandondrury 03-16-2007 04:43 AM

Trying to figure out if user has specified avatar
 
Hello,

I was wondering if anyone could tell me where I could find the database table / column that tells if an avatar has been set by the user.

I've found that if I try to snag the avatar using the following method from a member who does not have an avatar, I get some default vBulletin image.

PHP Code:

$avatarid "http://forum.recordingreview.com/image.php?u=$userid"

Because vBulletin still returns an image, I haven't figured out how to right a php IF statement for this. It seams I need to figure it out from the database.

Brandon

WhaLberg 03-16-2007 09:43 AM

If I am not wrong you want to check if a user has an avatar or not.

You can go to avatar or customavatar fields to see whether a user has an avatar or not.

brandondrury 03-16-2007 05:51 PM

Any idea what table those would be under?

I checked the user table and didn't find any values for any of the avatar fields even though many of the users have avatars.

Brandon

Okay, I found it. It's under the "customavatar" table.

Brandon

WhaLberg 03-16-2007 06:29 PM

I told that in my first post.

PHP Code:

<?
$query = mysql_query("SELECT * FROM customavatar WHERE userid='$userid'");
if (mysql_num_rows($query)>0) 

echo "this user has an avatar.";
}
?>


Brad 03-16-2007 06:50 PM

Use this script;

PHP Code:

// ### You'll need the globals, but you probably already include this script so remove this line if you do!
require_once('./global.php');

// ### You'll need the user functions, remove this line if it's already begin called
require_once('./includes/functions_user.php');

// ### Just making sure it's not already set! ;)
unset($avatar_url$avatar);
$show['avatar'] = false// for the templates

// ### Is user logged in?
if ($vbulletin->userinfo['userid'])
{
    
// User logged in, so fetch avatar (one query)
    
$avatar_url fetch_avatar_url($vbulletin->userinfo['userid']);

    
// If user has avatar set some vars
    
if (is_array($avatar_url)
    {
        
$avatar['url']  = $avatar_url[0];
        
$avatar['size'] = $avatar_url[1];
        
$show['avatar'] = true;
    }


and this in the template in question;

HTML Code:

<if condition="$show[avatar]">
<img src="$avatar[url]" border="0" $avatar[size] />
</if>



All times are GMT. The time now is 10:52 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00959 seconds
  • Memory Usage 1,726KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_html_printable
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete