1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-23 01:21:28 +00:00

Rewrote database support to classes, Fixed strict warning in sanitizedummy.php

This commit is contained in:
Markus Birth
2013-03-15 10:51:33 +01:00
parent 22890cceca
commit 65d0cc64a2
7 changed files with 271 additions and 126 deletions

56
classes/Db/Abstract.php Normal file
View File

@@ -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'");
}
}