vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   preg_replace...er, What it Do? (https://vborg.vbsupport.ru/showthread.php?t=303886)

Digital Jedi 10-27-2013 05:44 AM

preg_replace...er, What it Do?
 
Assuming I wanted to replace a large portion of the navbar template with a custom template, let's say from [minicode]<!-- nav buttons bar -->[/minicode] to [minicode]<!-- / nav buttons bar -->[/minicode], would the first part of this plugin be correct?

PHP Code:

$template $vbulletin->templatecache['navbar'];
$match '<!-- nav buttons bar/.+/nav buttons bar -->';
$replace $vbulletin->templatecache['djs_navbar']; 

This is assuming that dot matches newlines. What I don't know what to do know, is what to do with the [minicode]preg_replace[/minicode] function itself. I thought something like:

PHP Code:

$vbulletin->templatecache['navbar'] = preg_replace($match$replace$template); 

But until I've got the first part right, I'm just guessing. Not to mention, I have no idea which hook will work in this case.

vBNinja 10-27-2013 06:46 AM

do you want to change it on all the pages? ... or?

--------------- Added [DATE]1382856632[/DATE] at [TIME]1382856632[/TIME] ---------------

also post exactly what you want to replace so i can write the regex for you

kh99 10-27-2013 10:58 AM

I think what you have is almost right. You need the '/' delimiters around the entire pattern, and you need an 's' modifier at the end so that the '.' will match newlines. So Try:
Code:

$match = '/<!-- nav buttons bar.+nav buttons bar -->/s';

nerbert 10-27-2013 11:20 AM

"\s\S" matches anything, including line breaks.

/<!-- nav buttons bar[\s\S]+?nav buttons bar -->/

Digital Jedi 10-27-2013 05:58 PM

Ah, so I had my delimiters in the wrong place. Thanks for that. I'm pretty sure I can figure out the regex, but I wasn't sure if my PHP syntax was correct to start with. So the actual preg_replace function is written correctly?

PHP Code:

$vbulletin->templatecache['navbar'] = preg_replace($match$replace$template); 

And, I guess, there's no way to be sure about which hook to use.

kh99 10-27-2013 06:42 PM

The call looks correct. I think parse_templates is a good hook to use, since you know the templates will be cached at that time.

Digital Jedi 10-27-2013 07:01 PM

Looks like the regex works (totally forgot about [\s\S] ), and I got the navbar to disappear on global_complete and parse_templates. Yeah, parse_templates seems like the better one to use. Only thing now is the content of my custom template is not being inserted. But, at least I'm farther along than I was. Thanks again.

kh99 10-27-2013 07:09 PM

Yeah, I was actually thinking vb4, but in vb3 global_start works too.

Digital Jedi 10-27-2013 08:56 PM

Interesting, I can get replace to work if I put the raw HTML in the $replace variable, but not my custom template. This line must still be wrong:

PHP Code:

$replace $vbulletin->templatecache['djs_navbar']; 


kh99 10-27-2013 09:26 PM

Is your template being cached? If not you need a plugin on hook cache_templates and add the name of your template to the $globaltemplates array, or else you can call fetch_template() (although that would add an extra db query).


All times are GMT. The time now is 01:38 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.01940 seconds
  • Memory Usage 1,735KB
  • 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)bbcode_code_printable
  • (4)bbcode_php_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
  • (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