returns all active plugins
(self)
| 268 | t = HookThread(self.core.threadManager, function, args, kwargs) |
| 269 | |
| 270 | def activePlugins(self): |
| 271 | """ returns all active plugins """ |
| 272 | return [x for x in self.plugins if x.isActivated()] |
| 273 | |
| 274 | def getAllInfo(self): |
| 275 | """returns info stored by hook plugins""" |
no test coverage detected