Archive:Xbmcaddon module: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Sho
mNo edit summary
>Martijn
No edit summary
Line 11: Line 11:
please note that <your addons ID> mentioned above must be the same as addon id="<your addons ID> in addons.xml
please note that <your addons ID> mentioned above must be the same as addon id="<your addons ID> in addons.xml


[[category:Add-ons]]
==See also==
'''Development:'''
* [[Add-on development]]
* [[Python development]]
 
[[Category:Python Tutorial]]
[[Category:Python]]
[[Category:Addon Development]]
[[Category:Development]]

Revision as of 21:41, 26 January 2013

The documentation for the xbmcaddon module may be found here <linky to auto-gen'd python docs>. The getSetting and setSetting commands may be used to store state information between calls, in addition to accessing configuration information. openSettings pops up the configuration dialog allowing the user to change the configuration of your plugin source. getLocalizedString retrieves translated strings, and getAddonInfo returns pertinent information about your pluginsource should you want to display this via some other means.

 import xbmcaddon
 __settings__ = xbmcaddon.Addon(id='<your addons ID>')
 __language__ = __settings__.getLocalizedString
 __language__(30204)              # this will return localized string from resources/language/<name_of_language>/strings.xml
 __settings__.getSetting( "foo" ) # this will return "foo" setting value 
 __settings__.setSetting( "foo" ) # this will set "foo" setting value
 __settings__.openSettings()      # this will open settings window

please note that <your addons ID> mentioned above must be the same as addon id="<your addons ID> in addons.xml

See also

Development: