Bugfix: Database creation through remoting api failed
| | |
| | | //* Add a record |
| | | public function sites_database_add($session_id, $client_id, $params) |
| | | { |
| | | global $app; |
| | | |
| | | if(!$this->checkPerm($session_id, 'sites_database_add')) { |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | |
| | | //* Update a record |
| | | public function sites_database_update($session_id, $client_id, $primary_id, $params) |
| | | { |
| | | global $app; |
| | | |
| | | if(!$this->checkPerm($session_id, 'sites_database_update')) { |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | |
| | | //* Delete a record |
| | | public function sites_database_delete($session_id, $primary_id) |
| | | { |
| | | global $app; |
| | | if(!$this->checkPerm($session_id, 'sites_database_delete')) { |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | |
| | | $selected = ($k == $val)?' SELECTED':''; |
| | | if(!empty($this->wordbook[$v])) |
| | | $v = $this->wordbook[$v]; |
| | | $out .= "<option value='$k'$selected>$v</option>\r\n"; |
| | | $out .= "<option value='$k'$selected>".$this->lng($v)."</option>\r\n"; |
| | | } |
| | | } |
| | | $new_record[$key] = $out; |
| | |
| | | 'keyfield'=> 'domain_id', |
| | | 'valuefield'=> 'domain' |
| | | ), |
| | | 'value' => array('0' => $app->tform->lng('select_site_txt')) |
| | | 'value' => array('0' => 'select_site_txt') |
| | | ), |
| | | 'type' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | |
| | | 'keyfield'=> 'database_user_id', |
| | | 'valuefield'=> 'database_user' |
| | | ), |
| | | 'value' => array('0' => $app->tform->lng('select_dbuser_txt')) |
| | | 'value' => array('0' => 'select_dbuser_txt') |
| | | ), |
| | | 'database_ro_user_id' => array ( |
| | | 'datatype' => 'INTEGER', |
| | |
| | | 'keyfield'=> 'database_user_id', |
| | | 'valuefield'=> 'database_user' |
| | | ), |
| | | 'value' => array('0' => $app->tform->lng('no_dbuser_txt')) |
| | | 'value' => array('0' => 'no_dbuser_txt') |
| | | ), |
| | | 'database_charset' => array ( |
| | | 'datatype' => 'VARCHAR', |