]> git.datanom.net - qtadmin.git/blame - lib/db_implementation.php
Revert change of vim tags
[qtadmin.git] / lib / db_implementation.php
CommitLineData
6df4b805 1<?php
6b3d5ba9 2/* vim: set ts=4 tw=0 sw=4 noet: */
6df4b805
MR
3abstract class DBImpl {
4
b95d1cdb 5 private function __clone() {}
6df4b805 6
b95d1cdb
MR
7 abstract protected static function getInstance();
8 abstract protected function getQMails($offset = -1, $rowsPerPage = -1, $recipient = 'all');
9 abstract protected function getMarked($recipient = 'all');
10 abstract protected function numRows();
11 abstract protected function getMail($id);
12 abstract protected function setCharset($charset = 'utf8');
13 abstract protected function update($sql);
6df4b805 14}
This page took 0.046932 seconds and 5 git commands to generate.