vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Hooking and changing Title and msgarea (https://vborg.vbsupport.ru/showthread.php?t=285371)

extends 07-09-2012 10:42 PM

Hooking and changing Title and msgarea
 
I've been trying to create a custom posting template for one of my forums on the board that I am creating(using this tutorial this tutorial )

But the problem is that I run into a issue of minimum character requirements and lack there of a title. Because I am creating my own custom forum fields, I'd like to create a custom predesignated title using one of the fields I have created and use my field data as part of the messagearea results.

How should I go about fixing this problem?

kh99 07-09-2012 10:58 PM

In the plugin using hook newthread_post_start, the title should be in $vbulletin->GPC['subject'] and the messagearea should be in $vbulletin->GPC['message'] . So you should be able to solve your problem by setting those to whatever you want in your plugin code.

extends 07-09-2012 11:40 PM

edit: NVM

Thanks kh99

kh99 07-09-2012 11:46 PM

I'm not sure, but I think if you want to use html in your message you might be able to set $vbulletin->GPC['wysiwyg'] = 1. It's not really like using html because it will get converted to bbcode and then back to html, but it might solve your newline problem.

The other way would be to use a "\n" character instead of the <br/>. That would need to be in a double-quoted string (if you use it inside single quotes you'll just get a \n in the text).


All times are GMT. The time now is 03:01 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.01100 seconds
  • Memory Usage 1,712KB
  • 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)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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