32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import re
# provides another export window, and custom file generation - does not use action.save()
class exportcat():
meta = plugin_meta()
module = "exportcat"
# Register callback
def __init__(self, parent):
conf.add_plugin_defaults(self.meta, self.module)
if parent:
self.parent = parent
uikit.add_menu([parent.extensions, parent.extensions_context], "Export all stations", self.savewindow)
|
|
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import re
# provides another export window, and custom file generation - does not use action.save()
class exportcat():
meta = plugin_meta()
module = __name__
# Register callback
def __init__(self, parent):
conf.add_plugin_defaults(self.meta, self.module)
if parent:
self.parent = parent
uikit.add_menu([parent.extensions, parent.extensions_context], "Export all stations", self.savewindow)
|