Enhanced GENERAL plugins for flexible API: added data and process to GENERAL plugindata, more details at http://www.gramps-project.org/wiki/index.php?title=Addons_development#General_Plugins

svn: r15701
This commit is contained in:
Doug Blank
2010-08-11 05:42:46 +00:00
parent abd7b09450
commit 0199cd7da5
4 changed files with 125 additions and 10 deletions

View File

@@ -312,3 +312,8 @@ class GuiPluginManager(gen.utils.Callback):
"""
return [plg for plg in self.basemgr.get_reg_docgens()
if plg.id not in self.__hidden_plugins]
def get_reg_general(self, category=None):
return [plg for plg in self.basemgr.get_reg_general(category)
if plg.id not in self.__hidden_plugins]