| | |
| | | return false; |
| | | } |
| | | $app->uses('remoting_lib'); |
| | | $app->remoting_lib->loadFormDef('../domain/form/domain.tform.php'); |
| | | $app->remoting_lib->loadFormDef('../client/form/domain.tform.php'); |
| | | return $app->remoting_lib->getDataRecord($primary_id); |
| | | } |
| | | |
| | |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | return $this->insertQuery('../domain/form/domain.tform.php',$client_id,$params); |
| | | return $this->insertQuery('../client/form/domain.tform.php',$client_id,$params); |
| | | } |
| | | |
| | | //* Delete a record |
| | |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $affected_rows = $this->deleteQuery('../domain/form/domain.tform.php',$primary_id); |
| | | $affected_rows = $this->deleteQuery('../client/form/domain.tform.php',$primary_id); |
| | | return $affected_rows; |
| | | } |
| | | |