I have ran into several roadblocks on this new plugin situation and it is frustrating to say the least.
Entering in SQL queries seem to work, but eval codes for template calls (even by the new standard like error templates) cause errors.
I am pretty sure it is user error on my end, but what would be really nice to see for once is a real life example of a mysql plugin-template exchange within a plugin so we have a general idea of what needs to be done in order to make it work properly.
Ok, starting to get the hang of it. I still prefer the old way of simply creating a include script to handle all of my hacks, but I can also see where the plugin manager will be beneficial for many areas such as a seperate front page with left, middle and right columns similar to the old Nuke class system.
Quote:
Originally Posted by Highlander65
Are there restrictions on what can go inside the
Code:
//Start PHP Code
//End PHP Code
For example: - Can we use a simple include or require statement for large code sections or functions?
- Do we have length restrictions?
- Can we make new SQL queries?
- Is there any PHP code that can't be used?
- Is there any PHP code that SHOULDN'T be used (different then can't)?
Stuff like that...
Thanks!
|
Most of the PHP code does work, but forget old functions such as the bbcode_parse or things along that nature.
The SQL queries will work as well, but you have to use the new format which was posted by VBLuke earlier, in which Keir created a document on those new settings.
A example of what I did with just a very elementary and simple condition within a plugin was this:
Code:
if ($vbulletin->userinfo['userid'] == 1){
echo "You are the admin and this should load a template";
eval('print_output("' . fetch_template('FORUM_STANDOFF') . '");');
}
else
{
echo "Well that sucked didnt it?";
}
Which worked. As long as I have that basis and get re-familiarized with many of the new variables, things should be pretty well back to normal within the plugin system, rather than creating a include script for my own created hacks.