diff --git a/plugin.video.alfa/channels/support.py b/plugin.video.alfa/channels/support.py index b7b13809..9600ec65 100644 --- a/plugin.video.alfa/channels/support.py +++ b/plugin.video.alfa/channels/support.py @@ -245,3 +245,16 @@ def swzz_get_url(item): data = item.url return data + +def menu(itemlist, item, title='', action='', url='', contentType='movie'): + + itemlist.append(Item( + channel = item.channel, + title = title, + action = action, + url = url, + contentType = contentType + )) + from channelselector import thumb + itemlist = thumb(itemlist) + return itemlist \ No newline at end of file