def loadConfig(self,config,blankType):
'''
Used for loading objects from xbmc settings that were
stored using pythons pickle functionality.
:return array/dict
'''
# open the pickled settings using xbmcs settings api
configObject=addonObject.getSetting(config)
#configObject=xbmcplugin.getSettings(_handle,config)
#configObject=self.loadFile(config)
if bool(configObject):
# if config exists load up the config into channels
return pickle.loads(configObject)
else:
if blankType=='array':
# otherwise create a blank array
return []
elif blankType=='dict':
# return a blank dict
return {}
else:
# default to return an array
return []
评论列表
文章目录