Fix get_enums function for SQLite
hard coded enums values for all tables because enum feature doesn't exists for SQLite. git-svn-id: http://piwigo.org/svn/trunk@6153 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
8469140471
commit
d8d8ca5ed3
3 changed files with 26 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -443,7 +443,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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue