Log in

View Full Version : External file import question


Vcize
10-30-2012, 04:57 AM
I am attempting to include a navigation bar at the top of my site and have followed some of the guides to do so using an external php script. However, the only way I've been able to figure out to do it is by creating the plugin and then including the plugin in each of my templates via a variable.

For instance...

Plugin code
ob_start();
require_once('foo/foo.php');
$foo_include = ob_get_clean();
ob_end_clean();

That runs on global_start.

Then, in my template I call $foo_include and that imports my foo.php file.

Is there a way I can hook into the templates to automatically include all the plugins at the very beginning of each template without the user having to add the variable manually? It needs to be the very first thing run, before any other elements are rendered.

Simon Lloyd
10-30-2012, 07:37 AM
Why not include the variable in the header template?, it will then be available regardless of what you're looking at in your forum.

Vcize
10-30-2012, 06:39 PM
Why not include the variable in the header template?, it will then be available regardless of what you're looking at in your forum.

That's what I've done. However, if I switch themes I'll have to add it in the header template for that theme. Likewise, if I release it as a plugin then whomever uses it will have to add the variable manually.

Most plugins I download don't require me to make any manual edits so I'm guessing there is some way around this.

Simon Lloyd
10-30-2012, 09:46 PM
So do an str replace as a plugin to add the variable to th header using global start or global complete as the hook

Vcize
10-31-2012, 03:00 AM
I have that a shot by adding a plugin with the following code (the call to logo is the first thing in the header)...

ob_start();
echo str_replace('<!-- logo -->', '$gamestabar_include <!-- logo -->', '<!-- logo -->');
ob_end_clean();

However it doesn't appear to be showing up. I'm sure there is another way to do this as well as many of the other plugins I use insert new hooks in all themes (like vbshout), but I can't follow their code structure.

Simon Lloyd
10-31-2012, 06:06 AM
Check out this https://vborg.vbsupport.ru/showthread.php?t=263517 or even better this https://vborg.vbsupport.ru/showthread.php?t=286403