vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Mini Mods - Usergroup Messages (https://vborg.vbsupport.ru/showthread.php?t=128544)

Sofia 03-30-2007 02:43 PM

Quote:

Originally Posted by Andyucs (Post 1213759)
and how did you do that for us n00bs lol

To use HTML, bbcode and smilies in the message

In usergroup_messages.php (admincp), find

PHP Code:

$parser =& new vB_BbCodeParser($vbulletinfetch_tag_list()); 

Replace by :

PHP Code:

require_once(DIR '/includes/class_bbcode.php');
$parser =& new vB_BbCodeParser($vbulletinfetch_tag_list());
$parsed_text $parser->do_parse($text$do_html$do_smilies$do_bbcode$do_imgcode$do_nl2br$cachable); 

Find (x 2)

PHP Code:

$message $parser->do_parse($db->escape_string($vbulletin->GPC['message']), falsetruetruetruetruefalse); 

Replace by (x 2)

PHP Code:

$message $parser->do_parse($db->escape_string($vbulletin->GPC['message']), truetruetruetruetruetrue); 




To insert a title above the message, find in the template usergroupemessages :


PHP Code:

<div align='center' style='border:2px black solid;' class='alt1'>$ugmsg[message]</div><br /> 

And replace by :

PHP Code:

table class="tborder" cellpadding="$stylevar[cellpadding]cellspacing="$stylevar[cellspacing]border="0" width="100%" align="center">

<
tr><td class="tcat"><center>$ugmsg[title]</center></td></tr>

<
tr><td class='alt1'>$ugmsg[message]</td></tr></table><br /> 


Andyucs 03-31-2007 06:06 PM

First Thanks Sofia

i modifyed mine a bit to also centre the message as well and made it bold also

PHP Code:

<table class="tborder" cellpadding="$stylevar[cellpadding]cellspacing="$stylevar[cellspacing]border="0" width="100%" align="center">

<
tr><td class="tcat"><center>$ugmsg[title]</center></td></tr>

<
tr><td class='alt1'><b><center>$ugmsg[message]</b></center></td></tr></table><br /> 

you missed a
PHP Code:



from the begining of your modification

Sofia 03-31-2007 06:10 PM

Yes, sorry :p the html, bbcode and smilies are good ?

Andyucs 03-31-2007 06:26 PM

Quote:

Originally Posted by Sofia (Post 1217009)
Yes, sorry :p the html, bbcode and smilies are good ?

yea looking good thanks

seem to have a prob with html code but bb codes work fine

take a look just above shout box

http://www.ucsclan.co.uk/forum/index.php

Sofia 03-31-2007 07:47 PM

Quote:

Originally Posted by Andyucs (Post 1217023)
yea looking good thanks

seem to have a prob with html code but bb codes work fine

take a look just above shout box

http://www.ucsclan.co.uk/forum/index.php

Ok so good :) Nice forum ;)

For html, you must put "true" everywhere :

PHP Code:

$message $parser->do_parse($db->escape_string($vbulletin->GPC['message']), falsetruetruetruetruefalse); 

The first "false" corresponds to the html (activation -> true) ;)

Benj 04-01-2007 06:57 PM

sweet work is there anyway i can make this message only show once per users session?

|Jordan| 04-09-2007 06:58 PM

Is there any way to make the messages display to users who's usergroup is not primary, but rather secondary?

harmor19 04-09-2007 07:29 PM

Quote:

Originally Posted by |Jordan| (Post 1223510)
Is there any way to make the messages display to users who's usergroup is not primary, but rather secondary?

Not with this version. I'm planning on upgrading this hack soon to do what you're asking.

|Jordan| 04-09-2007 09:52 PM

Quote:

Originally Posted by harmor19 (Post 1223529)
Not with this version. I'm planning on upgrading this hack soon to do what you're asking.

Sweet :up:

EDIT: Wow that was fast, i wasnt expecting an update 2 hours later. I thought it would be several days/weeks later. GJ!

harmor19 04-10-2007 01:10 AM

I have fixed the problem with HTML tags from converting into ASCII characters.
Messages are shown to users in primary and secondary usergroups.


All times are GMT. The time now is 04:50 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.01175 seconds
  • Memory Usage 1,769KB
  • 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
  • (9)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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