unfinished business on newnames (unsaved pending changes..)
[myslice.git] / plugins / queryupdater / __init__.py
1 from unfold.plugin import Plugin
2
3 class QueryUpdater(Plugin):
4
5     def template_file (self):
6         return "queryupdater.html"
7
8     def requirements (self):
9         reqs = {
10             'js_files' : [ "js/queryupdater.js" ] ,
11             'css_files': [ "css/queryupdater.css" ],
12             }
13         return reqs
14
15     def json_settings_list (self):
16         return ['plugin_uuid', 'domid', 'query_uuid']
17
18     def export_json_settings (self):
19         return True