mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-15 12:55:49 +01:00
775a5aeda2
Conflicts: addon.xml changelog.txt resources/lib/utils.py
41 lines
1009 B
Python
41 lines
1009 B
Python
import xbmc
|
|
import xbmcgui
|
|
import xbmcaddon
|
|
|
|
__addon_id__= 'script.xbmcbackup'
|
|
__Addon = xbmcaddon.Addon(__addon_id__)
|
|
|
|
def data_dir():
|
|
return __Addon.getAddonInfo('profile')
|
|
|
|
def addon_dir():
|
|
return __Addon.getAddonInfo('path')
|
|
|
|
def openSettings():
|
|
__Addon.openSettings()
|
|
|
|
def log(message,loglevel=xbmc.LOGNOTICE):
|
|
xbmc.log(encode(__addon_id__ + "-" + __Addon.getAddonInfo('version') + ": " + message),level=loglevel)
|
|
|
|
def showNotification(message):
|
|
xbmcgui.Dialog().notification(encode(getString(30010)),encode(message),time=4000,icon=xbmc.translatePath(__Addon.getAddonInfo('path') + "/icon.png"))
|
|
|
|
def getSetting(name):
|
|
return __Addon.getSetting(name)
|
|
|
|
def setSetting(name,value):
|
|
__Addon.setSetting(name,value)
|
|
|
|
def getString(string_id):
|
|
return __Addon.getLocalizedString(string_id)
|
|
|
|
def encode(string):
|
|
result = ''
|
|
|
|
try:
|
|
result = string.encode('UTF-8','replace')
|
|
except UnicodeDecodeError:
|
|
result = 'Unicode Error'
|
|
|
|
return result
|