vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vbArticles (https://vborg.vbsupport.ru/forumdisplay.php?f=106)
-   -   mod for cinq's hack (article) (https://vborg.vbsupport.ru/showthread.php?t=79789)

Allan 04-11-2005 09:16 PM

mod for cinq's hack (article)
 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
For this hack
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Would it be possible to carry out a MOD which makes it possible to see in the postbit the number of articles written by the user ?

and if possible that one can click above to go directly to the articles ;)

KTBleeding 04-11-2005 11:42 PM

I've been wanting this for a while.. hopefully it can be done.

Allan 04-12-2005 07:12 AM

Big thank to "tnguy3n" for this mod :)


Quote:

1. File Mod

Open includes/functions_showthread.php ,

FIND:
Code:

// format posts number
        $post['posts'] = vb_number_format($post['posts']);

BELOW, ADD:
Code:

// show user articles in postbit
        $userarticle = $DB_site->query_first("
        SELECT COUNT(articles_articleid) AS articles FROM " . TABLE_PREFIX . "articles_article
        WHERE  author = $post[username]");
        $totalarticles = $userarticle['articles'];

Save & close.

2. Template mod:

Open postbit(_legacy), (1 change)

FIND:
Code:

$vbphrase[posts]: $post[posts]

BELOW, ADD:
Code:

<if condition="($totalarticles != 0)"><br><smallfont>User Articles: <a href="articles.php?$session[sessionurl]">$totalarticles</a></smallfont></if>

that's it.

KTBleeding 04-12-2005 12:35 PM

Thanks!

DRJ 04-12-2005 05:36 PM

FYI this will add one query per each post in a thread if I am not mistaken. so if you have a bunch of replies you could take a page load hit.

KTBleeding 04-12-2005 06:05 PM

That's okay, I was planning on putting it in the profile rather than the postbit.


All times are GMT. The time now is 08:21 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.01012 seconds
  • Memory Usage 1,722KB
  • 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
  • (4)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)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