X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fdb%2Fcompany_db.inc;h=39108db831f22d408f41f2344c3a1c3b9371f96a;hb=f8219593c85e1020093b93972386fd477675504f;hp=cf20d52b8b00a65b96120d315417b5846916f8fe;hpb=4f89441866b40d759f43327d753b4dff31f3f02a;p=fa-stable.git diff --git a/admin/db/company_db.inc b/admin/db/company_db.inc index cf20d52b..39108db8 100644 --- a/admin/db/company_db.inc +++ b/admin/db/company_db.inc @@ -12,9 +12,9 @@ /* Update main or gl company setup. */ -function update_company_prefs( $params, $pref = TB_PREF ) +function update_company_prefs($params) { - $sql = "UPDATE {$pref}sys_prefs SET value = "; + $sql = "UPDATE ".TB_PREF."sys_prefs SET value = "; foreach($params as $name => $value) { if (!db_query($sql. db_escape($value). " WHERE name=".db_escape($name), "The company prefferences could not be updated ")) @@ -30,47 +30,34 @@ function update_company_prefs( $params, $pref = TB_PREF ) $prefs can be preference name, array of names, or null for all preferences. */ -function get_company_pref($prefs = null, $tbpref = TB_PREF) +function get_company_pref($prefs = null) { - global $SysPrefs, $core_version; - - if (!isset($_SESSION['SysPrefs']->prefs)) { // cached preferences - - $_SESSION['SysPrefs'] = new sys_prefs(); - - $sql = "SELECT name, value FROM {$tbpref}sys_prefs"; - $result = @db_query($sql); // supress errors before 2.3 db structure upgrade - - if(!$result) - return null; - - while($pref = db_fetch_assoc($result)) { - $_SESSION['SysPrefs']->prefs[$pref['name']] = $pref['value']; - } - - $SysPrefs = &$_SESSION['SysPrefs']; + global $SysPrefs, $db_version; - // update current db status for info in log file - $SysPrefs->db_ok = $SysPrefs->prefs['version_id'] == $core_version; - } + if (!isset($SysPrefs->prefs)) // just after first login or reset + $SysPrefs->refresh(); - $all = $_SESSION['SysPrefs']->prefs; + $all = $SysPrefs->prefs; - if (!$prefs) - return $all; - elseif (is_string($prefs)) + if ($prefs && is_string($prefs)) return @$all[$prefs]; - $ret = array(); - foreach($prefs as $name) - $ret[$name] = $all[$name]; + if (!is_array($all)) + $all = array(); + + return $all; +} - return $ret; +function get_company_prefs() +{ + return get_company_pref(null); } -function get_company_prefs($tbpref = TB_PREF) +function set_company_pref($pref, $category, $type, $length, $value) { - return get_company_pref(null, $tbpref); + $sql = "REPLACE `".TB_PREF."sys_prefs` SET `name`=".db_escape($pref).", `category`=".db_escape($category) + .", `type`=".db_escape($type).", `length`=".db_escape($length).", `value`=".db_escape($value); + return db_query($sql, "cannot set company pref"); } function get_base_sales_type() @@ -81,7 +68,7 @@ function get_base_sales_type() function get_company_extensions($id = -1) { global $path_to_root; - $file = $path_to_root.($id == -1 ? '' : '/company/'.$id).'/installed_extensions.php'; + $file = $path_to_root.($id == -1 ? '' : '/company/'.(int)$id).'/installed_extensions.php'; $installed_extensions = array(); if (is_file($file)) { include($file); @@ -149,15 +136,54 @@ function get_payment_terms_all($show_inactive) if (!$show_inactive) $sql .= " WHERE !inactive"; return db_query($sql,"could not get payment terms"); } - -function key_in_foreign_table($id, $table, $key, $escaped=false) +/* + Return number of records in tables, where some foreign key $id is used. + $id - searched key value + $tables - array of table names (without prefix); when table name is used as a key, then + value is name of foreign key field. For numeric keys $stdkey field name is used. + $stdkey - standard name of foreign key. +*/ +function key_in_foreign_table($id, $tables, $stdkey) { - if (!$escaped) - $id = db_escape($id); - $sql= "SELECT COUNT(*) FROM ".TB_PREF."$table WHERE $key = $id"; - $result = db_query($sql,"check $table relations failed"); - $myrow = db_fetch_row($result); - return ($myrow[0] > 0); + + if (!is_array($tables)) + $tables = array($tables); + + $sqls = array(); + foreach ($tables as $tbl => $key) { + if (is_numeric($tbl)) { + $tbl = $key; + $key = $stdkey; + } + $sqls[] = "(SELECT COUNT(*) as cnt FROM `".TB_PREF."$tbl` WHERE `$key`=".db_escape($id).")\n"; + } + + $sql = "SELECT sum(cnt) FROM (". implode(' UNION ', $sqls).") as counts"; + + $result = db_query($sql, "check relations for ".implode(',',$tables)." failed"); + $count = db_fetch($result); + + return $count[0]; } -?> \ No newline at end of file +//--------------------------------------------------------------------------------------------- +// +// Resets $theme references in users records to 'default'. +// +function clean_user_themes($theme) +{ + global $db_connections, $db; + + $comp = user_company(); + + $connections = $db_connections; // do not use db_connections directly here, or script will hang due to db_connections usage inside the loop + foreach ($connections as $n => $conn) { + $db = $_SESSION["wa_current_user"]->set_db_connection($n); + $sql = "UPDATE {$conn['tbpref']}users SET theme='default' WHERE theme='$theme'"; + if (!db_query($sql, 'Cannot update user theme settings')) + return false; + } + $db = $_SESSION["wa_current_user"]->set_db_connection($comp); + $_SESSION['wa_current_user']->prefs->theme = 'default'; + return true; +}