]> git.mjollnir.org Git - moodle.git/commitdiff
Initial add for Oracle.
authorles_kopari <les_kopari>
Thu, 25 Sep 2003 02:11:31 +0000 (02:11 +0000)
committerles_kopari <les_kopari>
Thu, 25 Sep 2003 02:11:31 +0000 (02:11 +0000)
mod/forum/db/oci8po.php [new file with mode: 0755]
mod/quiz/db/oci8po.php [new file with mode: 0755]
mod/resource/db/oci8po.php [new file with mode: 0755]
mod/survey/db/oci8po.php [new file with mode: 0755]
mod/workshop/db/oci8po.php [new file with mode: 0644]

diff --git a/mod/forum/db/oci8po.php b/mod/forum/db/oci8po.php
new file mode 100755 (executable)
index 0000000..121e5e2
--- /dev/null
@@ -0,0 +1,13 @@
+<?PHP 
+
+function forum_upgrade($oldversion) {
+// This function does anything necessary to upgrade
+// older versions to match current functionality
+
+  global $CFG;
+  
+  return true;
+
+}
+
+?>
diff --git a/mod/quiz/db/oci8po.php b/mod/quiz/db/oci8po.php
new file mode 100755 (executable)
index 0000000..25b6c06
--- /dev/null
@@ -0,0 +1,11 @@
+<?PHP 
+
+function quiz_upgrade($oldversion) {
+// This function does anything necessary to upgrade
+// older versions to match current functionality
+
+    global $CFG;
+    return true;
+}
+
+?>
diff --git a/mod/resource/db/oci8po.php b/mod/resource/db/oci8po.php
new file mode 100755 (executable)
index 0000000..a86cc98
--- /dev/null
@@ -0,0 +1,13 @@
+<?PHP 
+
+function resource_upgrade($oldversion) {
+// This function does anything necessary to upgrade
+// older versions to match current functionality
+
+    global $CFG;
+    return true;
+}
+
+
+?>
+
diff --git a/mod/survey/db/oci8po.php b/mod/survey/db/oci8po.php
new file mode 100755 (executable)
index 0000000..c8d3f09
--- /dev/null
@@ -0,0 +1,11 @@
+<?PHP
+function survey_upgrade($oldversion) {
+// This function does anything necessary to upgrade
+// older versions to match current functionality
+
+    return true;
+}
+
+
+?>
+
diff --git a/mod/workshop/db/oci8po.php b/mod/workshop/db/oci8po.php
new file mode 100644 (file)
index 0000000..a04437a
--- /dev/null
@@ -0,0 +1,12 @@
+<?PHP
+
+function workshop_upgrade($oldversion) {
+// This function does anything necessary to upgrade
+// older versions to match current functionality
+
+    return true;
+}
+
+
+?>
+