vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Show Thread Enhancements - Userlevel (https://vborg.vbsupport.ru/showthread.php?t=228119)

Olli2k 01-12-2010 01:11 PM

Quote:

Originally Posted by Coroner (Post 1915669)
I cannot found any "fetch_template" inside the xml ?

eval('$template_hook[postbit_userinfo_right_after_posts] .= "' . fetch_template('postbit_userlevel') . '";');

Is in every xml.

Complede User Level - Postbit Display start plugin code:

PHP Code:

PHP-Code des Plug-ins

global $vbulletin;
if (
$vbulletin->options['userlevel_on'])
{
    if (
THIS_SCRIPT == 'private')
    {
        
$up $vbulletin->db->query_first ("SELECT posts,joindate FROM " TABLE_PREFIX "user WHERE userid=" $this->post['fromuserid']);
        
$this->post array_merge ($this->post$up);
    }

    
$hl false;
    
$joindate 0;
    if (
$this->post['userid'])
    {
        
$joindate $this->post['joindate'];
    }
    if (
$vbulletin->options['userlevel_help']) $hl true;
    
$jointime = (TIMENOW $joindate) / 86400;
    
$exp ceil ($this->post['posts'] * $jointime);
    if (
$exp != 0)
    {
        
$level pow (log10 ($exp), 2);
    }
    else
    {
        
$level 0;
    }
    
$showlevel floor ($level) + 1;
    
$nextexp ceil (pow (10pow ($showlevel0.5)));
    if (
$showlevel == 1)
    {
        
$prevexp 0;
    }
    else
    {
        
$prevexp ceil (pow (10pow ($showlevel 10.5)));
    }

    
$width ceil ((($exp $prevexp) / ($nextexp $prevexp)) * 100) . 'px';
    
$needexp vb_number_format ($nextexp $exp);
    
$exp     vb_number_format ($exp);
    
$nextexp vb_number_format ($nextexp);

    eval(
'$template_hook[postbit_userinfo_right_after_posts] .= "' fetch_template('postbit_userlevel') . '";');


Files downloaded: today


Error messages:


Warning: fetch_template() calls should be replaced by the vB_Template class in [path]/includes/functions.php on line 3895

Warning: fetch_template() calls should be replaced by the vB_Template class in [path]/includes/functions.php on line 3895

Warning: fetch_template() calls should be replaced by the vB_Template class in [path]/includes/functions.php on line 3895

Coroner 01-12-2010 01:50 PM

Nope !!
I have no idea why or where you can see "fetch_template" !?

The real vB4 Plugin is:
PHP Code:

global $vbulletin;
if (
$vbulletin->options['userlevel_on'])
{
    if (
THIS_SCRIPT == 'private')
    {
        
$up $vbulletin->db->query_first ("SELECT posts,joindate FROM " TABLE_PREFIX "user WHERE userid=" $this->post['fromuserid']);
        
$this->post array_merge ($this->post$up);
    }

    
$hl false;
    
$joindate 0;
    if (
$this->post['userid'])
    {
        
$joindate $this->post['joindate'];
    }
    if (
$vbulletin->options['userlevel_help']) $hl true;
    
$jointime = (TIMENOW $joindate) / 86400;
    
$exp ceil ($this->post['posts'] * $jointime);
    if (
$exp != 0)
    {
        
$level pow (log10 ($exp), 2);
    }
    else
    {
        
$level 0;
    }
    
$showlevel floor ($level) + 1;
    
$nextexp ceil (pow (10pow ($showlevel0.5)));
    if (
$showlevel == 1)
    {
        
$prevexp 0;
    }
    else
    {
        
$prevexp ceil (pow (10pow ($showlevel 10.5)));
    }

    
$width ceil ((($exp $prevexp) / ($nextexp $prevexp)) * 100) . 'px';
    
$needexp vb_number_format ($nextexp $exp);
    
$exp     vb_number_format ($exp);
    
$nextexp vb_number_format ($nextexp);

    
$templater vB_Template::create('postbit_userlevel');
        
$templater->register('hl'$hl);
        
$templater->register('exp'$exp);
        
$templater->register('ewidth'$width);
        
$templater->register('showlevel'$showlevel);
        
$templater->register('needexp'$needexp);
        
$templater->register('nextexp'$nextexp);
    
$template_hook[postbit_userinfo_right_after_posts] .= $templater->render();



cellarius 01-14-2010 05:20 AM

Quote:

Originally Posted by Olli2k (Post 1953511)
eval('$template_hook[postbit_userinfo_right_after_posts] .= "' . fetch_template('postbit_userlevel') . '";');

Is in every xml.

Files downloaded: today

You so obviously downloaded the 3.8 version. Probably from the wrong thread?

meissenation 01-18-2010 06:16 PM

I bet you guys are clicking the link to see the images in the product description and then downloading the product from that link - which is the 3.8 version. ;) I just downloaded the vb4 zip and I see no mention of fetch in the product XML at all.

cellarius 01-18-2010 10:24 PM

Coroner, would you consider fixing template caching, please? I think many users won't find the fix I posted buried in the thread ;)

molieman 01-18-2010 11:37 PM

Fantastic and I love it.

Thank You!!!!!

Coroner 01-19-2010 03:16 AM

I'm sorry. Yes of course, we do it now.

cellarius 01-19-2010 09:24 AM

Thank you :)

Drache 03-03-2010 10:50 AM

very nice mod. is there a list page that shows the top 10 highest level users?

also how do I make it show next to the reputation on left side and not above it?

Thanks.

Toxic2 03-20-2010 08:03 AM

Thanks for the Upgrade Corner

Professional2 03-28-2010 05:45 AM

tagged...

Sancipa 03-28-2010 08:41 AM

can we defined the experience, the number of post, and the other calculation?

mmorpgwelt 03-28-2010 02:17 PM

Installed an loving it!:D

Sworm 03-28-2010 07:05 PM

A question:
work in pl4 too? Thanks

syrn 03-29-2010 01:52 AM

installed , 5 *

thanx

balkanboy 03-29-2010 02:28 AM

Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: postbit_userlevel in [path]/includes/functions.php on line 3932

Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: postbit_userlevel in [path]/includes/functions.php on line 3932

wayyyy above the forum like the guy posted above me.... disabled for the moment

rule0 04-01-2010 05:40 PM

thanks, installed and working smooth :)

balkanboy 04-13-2010 04:14 AM

Hooks
This Mod use a template hook. Without it, it won't work!
$template_hook [postbit_userinfo_right_after_posts]

sorry not sure what to do.....

never mind all working

Hall of Famer 04-13-2010 05:22 AM

Well VBexperience does not work on VB4, so how will this one work then?

pjdaley 04-13-2010 07:55 PM

Decent Mod.

Features Needed:
Make a page to show say top 10 members by level.
User defined variables for exp needed to level up, also allow user to chose weather the level is based off time spent on forum, post count, or membership time.
tab in profile

DxSEO 04-15-2010 09:06 AM

tagged for future use

friendlymela 10-16-2015 06:59 AM

Its working still?

Rasmus Gustavss 10-26-2015 11:53 AM

working?

ArcadeSyndicate 10-26-2015 01:57 PM

don't you guys have a testboard? ;)


All times are GMT. The time now is 12:54 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.01355 seconds
  • Memory Usage 1,807KB
  • 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
  • (2)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (24)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete