mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-15 12:55:49 +01:00
2fd7b130c7
fixed bug where disabling scheduler did not turn it off
27 lines
732 B
Python
27 lines
732 B
Python
import xbmc
|
|
import xbmcaddon
|
|
|
|
__addon_id__= 'script.xbmcbackup'
|
|
__Addon = xbmcaddon.Addon(__addon_id__)
|
|
|
|
def data_dir():
|
|
return __Addon.getAddonInfo('profile')
|
|
|
|
def log(message,loglevel=xbmc.LOGNOTICE):
|
|
xbmc.log(encode(__addon_id__ + ": " + message),level=loglevel)
|
|
|
|
def showNotification(message):
|
|
xbmc.executebuiltin("Notification(" + getString(30010) + "," + message + ",4000," + 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):
|
|
return string.encode('UTF-8','replace')
|