The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
![]()
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:
PHP Code:
|
#2
|
||||
|
||||
![]()
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 |
#3
|
|||
|
|||
![]()
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'; |
Благодарность от: | ||
Digital Jedi |
#4
|
|||
|
|||
![]()
"\s\S" matches anything, including line breaks.
/<!-- nav buttons bar[\s\S]+?nav buttons bar -->/ |
Благодарность от: | ||
Digital Jedi |
#5
|
||||
|
||||
![]()
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:
|
#6
|
|||
|
|||
![]()
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.
|
#7
|
||||
|
||||
![]()
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.
|
#8
|
|||
|
|||
![]()
Yeah, I was actually thinking vb4, but in vb3 global_start works too.
|
#9
|
||||
|
||||
![]()
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:
|
#10
|
|||
|
|||
![]()
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).
|
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|