Returns the class of a plugin with the same name
(self, type, name)
| 310 | self.log.debug("Available plugins : %s" % str(plugins)) |
| 311 | |
| 312 | def loadClass(self, type, name): |
| 313 | """Returns the class of a plugin with the same name""" |
| 314 | module = self.loadModule(type, name) |
| 315 | if module: return getattr(module, name) |
| 316 | |
| 317 | def getAccountPlugins(self): |
| 318 | """return list of account plugin names""" |
no test coverage detected