blob: 085a560f6ad328c90728825b3d796745a327a96f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
class AbstractLayer
{
public static $pdo = NULL;
# Generic
public static function protect($value,$alias=NULL) {BackendPhpPdo::getException('Not Implemented');}
# saveloadlist
public static function Keywords($table,$keyword='') {BackendPhpPdo::getException('Not Implemented');}
public static function KeywordsInsert($table,$keyword,$data) {BackendPhpPdo::getException('Not Implemented');}
public static function KeywordsUpdate($table,$keyword,$data) {BackendPhpPdo::getException('Not Implemented');}
# datatypes
public static function DatatypesFile() {BackendPhpPdo::getException('Not Implemented');}
# model
public static function Tables() {BackendPhpPdo::getException('Not Implemented');}
public static function Columns($table) {BackendPhpPdo::getException('Not Implemented');}
public static function Relations($table,$column) {BackendPhpPdo::getException('Not Implemented');}
public static function Keys($table) {BackendPhpPdo::getException('Not Implemented');}
}
?>
|