Method |
Description |
|
arrToLower ( array $array ) : array |
Change keys and values case to lower |
|
exists ( ) : boolean |
Checking that Table and Config exists and throw exceptions if not |
|
field ( string $name ) : boolean |
Checking that typed field really exist in table |
|
fields ( array $fields ) : boolean |
Checking that typed fields really exist in table |
|
filter ( array $fields ) : array |
Delete ID field from arrays |
|
isNumeric ( string $type ) : boolean |
Checking that field type is numeric |
|
relation ( string $local, string $foreign ) : boolean |
Checking that relation between tables exists |
|
relationType ( string $type ) : boolean |
Checking that relation type is correct |
|
table ( string $name ) : Validate |
Table name |
|
type ( string $name, mixed $value ) : boolean |
Checking that typed field have correct type of value |
|
types ( array $types ) : boolean |
Checking that types from array matching with [boolean, integer, string, double] |
|