reorganisation des dossiers
[mtweb] / mw / app / data / modules / share / mw_data_init.php
diff --git a/mw/app/data/modules/share/mw_data_init.php b/mw/app/data/modules/share/mw_data_init.php
new file mode 100644 (file)
index 0000000..1a74be4
--- /dev/null
@@ -0,0 +1,30 @@
+<?php
+
+  class mw_data_init extends mw_data{
+
+    var $env;
+    var $sgbd;
+
+    function env(){
+      return $this->env;
+    }
+
+    function sgbd(){
+      return $this->sgbd;
+    }
+
+    function set_env(&$env){
+      $this->env = &$env;
+    }
+
+    function set_sgbd(&$sgbd){
+      $this->sgbd = &$sgbd;
+    }
+
+    function table_prefix(){
+      return false;
+    }
+
+  }
+
+?>
\ No newline at end of file