protected function DeployServicesClient::debugEnabled in Deploy Services Client 7
Determines if the endpoint has debugging turned on.
Return value
TRUE if debugging is enabled, or FALSE if it isn't.
3 calls to DeployServicesClient::debugEnabled()
- DeployServicesClient::login in ./
deploy_services_client.client.inc - Logs in to the deployment endpoint via session authentication.
- DeployServicesClient::logout in ./
deploy_services_client.client.inc - Logs out of the deployment endpoint.
- DeployServicesClient::request in ./
deploy_services_client.client.inc - Performs a request to a REST path on the endpoint.
File
- ./
deploy_services_client.client.inc, line 326 - Defines a Services client class which communicates with Deployment endpoints.
Class
- DeployServicesClient
- Class which defines a Services client based on a Deployment endpoint.
Code
protected function debugEnabled() {
return !empty($this->endpoint->debug);
}