28c73f4ee420273fe1b009fecb6cd3a9b2ad44e0
[unfold.git] / plugins / simplelist.py
1 from engine.plugin import Plugin
2
3 class SimpleList (Plugin) :
4
5     # it would make sense to *not* define any constructor here and let Plugin kick in
6     # however it feels nicer this way as we document the settings used in our own template
7     # plus it's less confusing for any subclass if they can be sure which constructor to call
8     def __init__ (self, list=[], with_datatables=False, **settings):
9         Plugin.__init__ (self, **settings)
10         self.list=list
11         self.with_datatables = with_datatables
12
13     # SimpleList is useless per se anyways
14     def template_file (self): return "simplelist.html"
15
16     def requirements (self):
17         reqs = { 'js_files' : [ "js/simplelist.js" ],
18                  'css_files': [ "css/simplelist.css" ],
19                  }
20         if self.with_datatables:
21             reqs['js_files'].append ("datatables/js/dataTables.js")
22             reqs['js_files'].append ("js/with-datatables.js")
23         return reqs
24 # for tests
25 #                 'js_chunks' : "/* a javascript chunk */",       
26 #                 'css_chunks': "/* a css style */ ",
27     
28     def json_settings_list (self): return ['plugin_uuid', 'query','query_uuid','key','value']
29