I am having some problems getting into plugin development in vBulletin (5 Connect). I need to use some custom database queries for the output, because i made some database changes.
I'll just show what i mean with a simple example:
there is a template "display_contenttype_conversationstarter_threadview_Text" or whatever and there is the variable {vb:raw conversation.title}. So somewhere deep in vbulletin there is a query for this to deliver the content for the title.
I have more than one title for one thread (multiple languages) and need to vary the query. So one time i need to get the title from the english table and another time i need to pull the information e.g. from the german one.
So what i need to do is either overwrite the query for {vb:raw conversation.title} (Anyone knows where i can find the query for this?). The problem is that i do not simply want to overwrite the query in the original file, but create a plugin, that overrides the original vbulletin query.
The other option is to create own variables, that i would have to change in the templates as well. I'm thinking of something like {vb:my_plugin conversation.title}. I just dont know if it's possible to create own variables for vBulletin.
It's really quite hard to begin with vbulletin, because i didnt find any good documentation to start with developing plugins for vBulletin 5. I had a look at plugins from others, but this is mostly only basic stuff.