taozi Community Developer Joined Nov 10, 2012 Messages 163 Reaction score 1 May 7, 2014 #1 As title, How to disable and enable plugin from profile? or How to disable and enable plugin from another plugin?
As title, How to disable and enable plugin from profile? or How to disable and enable plugin from another plugin?
herbfunk Community Developer Joined Oct 30, 2012 Messages 238 Reaction score 7 May 10, 2014 #2 All Plugin Related API can be found using Zeta.Common.Plugins.PluginManager. You can enumerate all plugins using PluginManager.Plugins. Code: foreach (var p in PluginManager.Plugins) { p.Enabled = false; } To achieve this from a profile would require creating a new XmlElement Tag (using a plugin).
All Plugin Related API can be found using Zeta.Common.Plugins.PluginManager. You can enumerate all plugins using PluginManager.Plugins. Code: foreach (var p in PluginManager.Plugins) { p.Enabled = false; } To achieve this from a profile would require creating a new XmlElement Tag (using a plugin).