summaryrefslogtreecommitdiff
path: root/classes/Db/Abstract.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-15 14:15:06 +0400
committerAndrew Dolgov <[email protected]>2013-03-15 14:15:06 +0400
commit57b8469e674ef082c30b7d1de40d5d53d50b251b (patch)
treea1b62dba5eac8ee7fb06e8227484d60db472ea0d /classes/Db/Abstract.php
parent07be89952d9e0b16eebd1b1a6a8dc8f7f41fcf3b (diff)
db: use builtin classloader, lowercase class files
Diffstat (limited to 'classes/Db/Abstract.php')
-rw-r--r--classes/Db/Abstract.php56
1 files changed, 0 insertions, 56 deletions
diff --git a/classes/Db/Abstract.php b/classes/Db/Abstract.php
deleted file mode 100644
index d84701fd7..000000000
--- a/classes/Db/Abstract.php
+++ /dev/null
@@ -1,56 +0,0 @@
-<?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