Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+11 votes
859 views
in Q2A Core by

I hope that plugin disable / enable switch is equipped in Q2A V1.7 core.

Reason:
Override / layer function() of plugin moves by all means. As a result, problem may occur when same function collides in plural plugin.

Effect:
When third party plugin does not have switch feature, problem investigation becomes easy.

Best regards.

Q2A version: 1.6.2
by
edited by
Good idea, sama55. I have implemented such a switch for all my new premium plugins at http://www.q2apro.com/plugins/?show=premium
by
Maybe this should be posted in the github repo, quite an "issue" :)
https://github.com/q2a/question2answer/issues

2 Answers

+4 votes
by

I agree. That should be step 1. I took a few more steps forward, last March and defined some requirements about an implementation of a pugin manger that would be efficient and easy to use. Here is the post https://github.com/q2a/question2answer/pull/36#issuecomment-37145475

In there I thought about some features and mentioned the advantages and disadvantages of the solution.

That is the simplest plugin manager (that I think would deserve to be called that way) I can think of. Then it would be possible to improve implementing plugin dependencies that should be taken into account when installing new plugins. And why not... an official plugin repository... anyway, I guess I'm thinking 10 years from now :D

I also wanted to make a comment about Kai's comment: I have implemented such a switch for all my new premium plugins

Well, exactly that is the issue. Currently, plugins disable themselves. This means that the plugin has to be loaded, executed and then, it disables itself. So if the plugin has a bug or is icompatible with a given Q2A version, the plugin might generate errors. So the plugin should not even be loaded. This also includes not even displaying there plugin options as that is part of the plugin itself :) So the plugin management has to happen from outside the plugin, i.e., from the core. Hope this is clearer.

+3 votes
by

This feature was added in our product.

...