function hosting_https_client_authentication_enabled in Aegir HTTPS 7.3
Determines if client authentication is enabled.
1 call to hosting_https_client_authentication_enabled()
- hosting_https_nodeapi_site_view in ./
hosting_https.nodeapi.inc - Implements hook_nodeapi_TYPE_OP().
File
- ./
hosting_https.nodeapi.inc, line 116 - NodeAPI functions for the Hosting HTTPS module.
Code
function hosting_https_client_authentication_enabled($node) {
if (isset($node->https_enabled) && $node->https_enabled && isset($node->https_client_authentication_enabled) && $node->https_client_authentication_enabled) {
return TRUE;
}
return FALSE;
}