52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# category map
categories = ['common', 'personal']
# prepare GUI
def __init__(self, parent):
ChannelPlugin.__init__(self, parent)
if parent:
#uikit.add_menu([parent.extensions, parent.extensions_context], "Share in MyOggRadio", self.share)
uikit.add_menu([parent.streammenu, parent.streamactions], "Share in MyOggRadio", self.share, insert=4)
# this is simple, there are no categories
|
|
<
|
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# category map
categories = ['common', 'personal']
# prepare GUI
def init2(self, parent):
if parent:
#uikit.add_menu([parent.extensions, parent.extensions_context], "Share in MyOggRadio", self.share)
uikit.add_menu([parent.streammenu, parent.streamactions], "Share in MyOggRadio", self.share, insert=4)
# this is simple, there are no categories
|