diff options
Diffstat (limited to 'include/dblayer/functions_pdo-sqlite.inc.php')
-rw-r--r-- | include/dblayer/functions_pdo-sqlite.inc.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/include/dblayer/functions_pdo-sqlite.inc.php b/include/dblayer/functions_pdo-sqlite.inc.php index d59e3b510..a4c3881f0 100644 --- a/include/dblayer/functions_pdo-sqlite.inc.php +++ b/include/dblayer/functions_pdo-sqlite.inc.php @@ -431,7 +431,19 @@ function pwg_db_cast_to_text($string) */ function get_enums($table, $field) { - return array(); + $Enums['categories']['status'] = array('public', 'private'); + $Enums['history']['section'] = array('categories','tags','search','list','favorites','most_visited','best_rated','recent_pics','recent_cats'); + $Enums['user_infos']['status'] = array('webmaster','admin','normal','generic','guest'); + $Enums['image']['type'] = array('picture','high','other'); + $Enums['plugins']['state'] = array('active', 'inactive'); + $Enums['user_cache_image']['access_type'] = array('NOT IN','IN'); + + $table = str_replace($GLOBALS['prefixeTable'], '', $table); + if (isset($Enums[$table][$field])) { + return $Enums[$table][$field]; + } else { + return array(); + } } // get_boolean transforms a string to a boolean value. If the string is |