()
| 244 | } |
| 245 | |
| 246 | public function generateRemoteManagementEnable() |
| 247 | { |
| 248 | if (!empty($this->backend_url) && !empty($this->app_id) && !empty($this->app_secret)) { |
| 249 | $this->remote_management_enable = "1"; |
| 250 | } else if (!empty($this->backend_url) || !empty($this->app_id) || !empty($this->app_secret)) { |
| 251 | log_tips(ERROR, "backend-url app-id app-secret options must be specified simultaneously."); |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | public function enableIast() |
| 256 | { |
no test coverage detected