
10-15-2007, 03:29 AM
|
 |
|
|
Join Date: Apr 2007
Location: Degabah Swamp
Posts: 293
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
But thats just it. I found this
https://vborg.vbsupport.ru/showthread.php?t=70165
which showed me that file to use and there is a hook there at the bottom
Code:
($hook = vBulletinHook::fetch_hook('template_groups')) ? eval($hook) : false;
So I figured I could make a plugin for it and just merge a few array items to the $only variable but there is no listing in the add new plugin for template_groups.
Im sure there is a way but after that would having it as a plugin create an issue as its not really physically in the table?
Thanks
--------------- Added [DATE]1192423255[/DATE] at [TIME]1192423255[/TIME] ---------------
Hmm, how about like this having the plugin use global_start.
Code:
eval('$template_hook[template_groups] .= "' . array_push($only, 'item6' => $vbphrase['item6']) . '";');
Im really trying to avoid manual file and template edits for my product.
|