reorganisation des dossiers
[mtweb] / mw / plugins / mw_plugin.php
diff --git a/mw/plugins/mw_plugin.php b/mw/plugins/mw_plugin.php
new file mode 100644 (file)
index 0000000..a4ec053
--- /dev/null
@@ -0,0 +1,35 @@
+<?php
+
+  class mw_plugin{
+
+    function title(){
+      return "(sans titre)";
+    }
+
+    function description(){
+      return "";
+    }
+
+    function install($env){
+      return true;
+    }
+
+    function uninstall($env){
+      return true;
+    }
+
+    function enable($env){
+      return true;
+    }
+
+    function disable($env){
+      return true;
+    }
+
+    function init($env){
+      return true;
+    }
+
+  }
+
+?>
\ No newline at end of file