vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Custom Banned Reason Template (https://vborg.vbsupport.ru/showthread.php?t=253909)

yotsume 11-19-2010 05:55 PM

Well I am already trying to use your code in a php module. So I placed your entire code in a php file and uploaded it to my modules directory and then created a new center block with it included but your code shows above the block when activated.

kh99 11-19-2010 05:58 PM

Oh. If you put it in its own php file then the file needs to start with "<?php" on the first line and end with "?>" on the last line. You also will need to include some other stuff. It would probably be best to look at an existing module php file to see what to do, or else make the code a plugin and use a template module. (Creating a plugin is pretty easy, if you've never done it before).

yotsume 11-19-2010 06:02 PM

1 Attachment(s)
So yea I added a new plug-in as you said to do and I am making a new template module in vba with this as my template code:

Code:

<!-- BANNED REASON -->
<tr>
  <td class="$altbgclass">
      <table border="0" cellpadding="10"><tr>
        <tr><td>$bbuserinfo[banned_reason_text]</td></tr>
      </table>
  </td>
</tr>
<!-- BANNED REASON -->

This worked perfectly! THANK YOU!!!

Here is how my sick new YOU HAVE BEEN BANNED page looks when a member logins in:

Do you care if I release this here on vborg with you as credited for it's creation?

Side Note: The last bit I have to work out is I want to remove the vba module template wrapper so it shows without the block around it. However, when I select do not use the wrapper the block breaks and goes off to the side.

kh99 11-21-2010 01:01 AM

Quote:

Originally Posted by yotsume (Post 2123629)
Do you care if I release this here on vborg with you as credited for it's creation?

That's fine with me. You can mention me as having contributed if you want, but I don't care.

furnival 01-31-2011 11:31 AM

Can anyone help me with a variation of the above please?
What I want to do is display the reason a user was banned under the word 'Banned' in the postbit.
I created a new plugin and inserted kh99's code. I assigned this plugin to the hook postbit_display_complete and made it active.
Then in the postbit template I inserted the code
Code:

<if condition="$bbuserinfo[banned_reason_text]"><div class="smallfont">$bbuserinfo[banned_reason_text]</div></if>
just below where user titles are displayed. Yet the reason the user was banned does not display. Any ideas why not, please?

kh99 01-31-2011 11:55 AM

Hey, this looks familiar... Anyway, I think the reason it isn't working is that $vbulletin->userinfo is the "current" user (the one viewing the page), and you need to look up the ban reason for the user who wrote the post. It might work if you use $post['usergroupid'] and $post['userid'] in place of $vbulletin->userinfo. There's also no reason to put the result in $vbulletin->userinfo['banned_reason_text'] - you could use $post there as well (so maybe just change $vbulletin->userinfo to $post everywhere in that code?).

Another thing you could do is to make a plugin on showthread_query and add the ban reason fields to the main post query (you can add to $hook_query_fields and $hook_query_joins in the plugin - see showthread.php around line 985). But I don't know, maybe if there are few users banned it would actually be faster to only do the query when needed rather than add it to every post. I suppose you could build a cache of ban info so that if a user posts a bunch of times on one page you're not doing the same query over and over.


All times are GMT. The time now is 05:44 AM.

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.02677 seconds
  • Memory Usage 1,729KB
  • 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_code_printable
  • (1)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
  • (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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete