reorganize plugins by plugin
[myslice.git] / plugins / quickfilter.py
diff --git a/plugins/quickfilter.py b/plugins/quickfilter.py
deleted file mode 100644 (file)
index b7777e4..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-from engine.plugin import Plugin
-
-class QuickFilter (Plugin) :
-
-    def __init__ (self, list=[], with_datatables=False, **settings):
-        Plugin.__init__ (self, **settings)
-        self.list=list
-        self.with_datatables = with_datatables
-        self.page.expose_js_metadata()
-
-    def title (self) : return "Title for Quick "
-
-    def template_file (self): return "quickfilter.html"
-
-    def requirements (self):
-        reqs = { 'js_files' : [ "js/quickfilter.js" ],
-                 'css_files': [ "css/quickfilter.css" ],
-                 }
-        return reqs
-
-    def exclude_from_json (self):
-        return ['list']
-