X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/6df4b8055a0e63b554ed211760ab1aa5cb431306..06d1b05e70b7b2ff3773c3b35e0f4d75f2ec2a80:/lib/db_implementation.php diff --git a/lib/db_implementation.php b/lib/db_implementation.php index c35754f..0ef791a 100644 --- a/lib/db_implementation.php +++ b/lib/db_implementation.php @@ -2,13 +2,14 @@ /* vim: set ts=4 tw=0 sw=4 noet: */ abstract class DBImpl { - private function __clone() {} + private function __clone() {} - abstract protected static function getInstance(); - abstract protected function getQMails($offset = -1, $rowsPerPage = -1, $recipient = 'all'); - abstract protected function getMarked($recipient = 'all'); - abstract protected function numRows(); - abstract protected function getMail($id); - abstract protected function setCharset($charset = 'utf8'); - abstract protected function update($sql); + abstract protected static function getInstance(); + abstract protected function getQMails($offset = -1, $rowsPerPage = -1, $recipient = 'all'); + abstract protected function getMarked($recipient = 'all'); + abstract protected function numRows(); + abstract protected function getMail($id); + abstract protected function getRecipient($id); + abstract protected function setCharset($charset = 'utf8'); + abstract protected function update($sql); }