| | |
| | | var $sys_userid; |
| | | var $sys_default_group; |
| | | var $sys_groups; |
| | | var $client_id; |
| | | |
| | | |
| | | //* Load the form definition from file. |
| | |
| | | } |
| | | |
| | | //* Load the user profile |
| | | function loadUserProfile($client_id = 0) { |
| | | function loadUserProfile($client_id_param = 0) { |
| | | global $app,$conf; |
| | | |
| | | $client_id = $app->functions->intval($client_id); |
| | | $this->client_id = $app->functions->intval($client_id_param); |
| | | |
| | | if($client_id == 0) { |
| | | if($this->client_id == 0) { |
| | | $this->sys_username = 'admin'; |
| | | $this->sys_userid = 1; |
| | | $this->sys_default_group = 1; |
| | |
| | | } |
| | | }*/ |
| | | |
| | | $user = $app->db->queryOneRecord("SELECT * FROM sys_user WHERE client_id = $client_id"); |
| | | $user = $app->db->queryOneRecord("SELECT * FROM sys_user WHERE client_id = $this->client_id"); |
| | | $this->sys_username = $user['username']; |
| | | $this->sys_userid = $user['userid']; |
| | | $this->sys_default_group = $user['default_group']; |
| | |
| | | $returnval = strtoupper($field_value); |
| | | break; |
| | | case 'IDNTOASCII': |
| | | if(function_exists('idn_to_ascii')) { |
| | | $returnval = idn_to_ascii($field_value); |
| | | } else { |
| | | $returnval = $field_value; |
| | | } |
| | | $returnval = $app->functions->idn_encode($field_value); |
| | | break; |
| | | case 'IDNTOUTF8': |
| | | if(function_exists('idn_to_utf8')) { |
| | | $returnval = idn_to_utf8($field_value); |
| | | } else { |
| | | $returnval = $field_value; |
| | | } |
| | | $returnval = $app->functions->idn_decode($field_value); |
| | | break; |
| | | default: |
| | | $this->errorMessage .= "Unknown Filter: ".$filter['type']; |
| | |
| | | $sql = "INSERT INTO ".$escape.$this->formDef['db_table'].$escape." ($sql_insert_key) VALUES ($sql_insert_val)"; |
| | | } else { |
| | | if($primary_id != 0) { |
| | | $sql_update = substr($sql_update,0,-2); |
| | | // update client permissions only if client_id > 0 |
| | | if($this->formDef['auth'] == 'yes' && $this->client_id > 0) { |
| | | $sql_update .= '`sys_userid` = '.$this->sys_userid.', '; |
| | | $sql_update .= '`sys_groupid` = '.$this->sys_default_group.', '; |
| | | } |
| | | $sql_update = substr($sql_update,0,-2); |
| | | $sql = "UPDATE ".$escape.$this->formDef['db_table'].$escape." SET ".$sql_update." WHERE ".$this->formDef['db_table_idx']." = ".$primary_id; |
| | | if($sql_ext_where != '') $sql .= " and ".$sql_ext_where; |
| | | } else { |
| | |
| | | } else { |
| | | $modules = $app->db->quote($params['modules']); |
| | | } |
| | | if(isset($params['limit_client']) && $params['limit_client'] > 0) { |
| | | $modules .= ',client'; |
| | | } |
| | | |
| | | if(!isset($params['startmodule'])) { |
| | | $startmodule = 'dashboard'; |
| | | } else { |