summaryrefslogtreecommitdiff
path: root/classes/Db/Abstract.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-15 19:54:08 +0400
committerAndrew Dolgov <[email protected]>2013-03-15 19:54:08 +0400
commita48d8533bf6a353972248720cf19ffb5ba55041f (patch)
treebfcfe3fbd0346250a1c635245393ecd1b7ad8176 /classes/Db/Abstract.php
parente600dbd44ac9d702bfad9d77f164cc0b358dc0b9 (diff)
Revert "db: use builtin classloader, lowercase class files"
This reverts commit 57b8469e674ef082c30b7d1de40d5d53d50b251b.
Diffstat (limited to 'classes/Db/Abstract.php')
-rw-r--r--classes/Db/Abstract.php56
1 files changed, 56 insertions, 0 deletions
diff --git a/classes/Db/Abstract.php b/classes/Db/Abstract.php
new file mode 100644
index 000000000..d84701fd7
--- /dev/null
+++ b/classes/Db/Abstract.php
@@ -0,0 +1,56 @@
+<?php
+
+abstract class Db_Abstract implements Db_Interface
+{
+ private $dbconn;
+ protected static $instance;
+
+ private function __construct() { }
+
+ public static function instance()
+ {
+ if (is_null(static::$instance)) {
+ static::$instance = new static();
+ }
+
+ return static::$instance;
+ }
+
+ public function connect($host, $user, $pass, $db) { }
+
+ public function getLink()
+ {
+ return $this->dbconn;
+ }
+
+ public function init() { }
+
+ public function escape_string($s, $strip_tags = true) { }
+
+ public function query($query, $die_on_error = true) { }
+
+ public function fetch_assoc($result) { }
+
+ public function num_rows($result) { }
+
+ public function fetch_result($result, $row, $param) { }
+
+ public function unescape_string($str)
+ {
+ $tmp = str_replace("\\\"", "\"", $str);
+ $tmp = str_replace("\\'", "'", $tmp);
+ return $tmp;
+ }
+
+ public function close() { }
+
+ public function affected_rows($result) { }
+
+ public function last_error() { }
+
+ public function quote($str)
+ {
+ return("'$str'");
+ }
+
+} \ No newline at end of file