function hosting_https_client_authentication_path in Aegir HTTPS 7.3
Fetches the client authentication path.
1 call to hosting_https_client_authentication_path()
- hosting_https_nodeapi_site_view in ./
hosting_https.nodeapi.inc - Implements hook_nodeapi_TYPE_OP().
File
- ./
hosting_https.nodeapi.inc, line 127 - NodeAPI functions for the Hosting HTTPS module.
Code
function hosting_https_client_authentication_path($node) {
if (empty($node->https_client_authentication_path)) {
return t('<em>(global)</em>');
}
return filter_xss($node->https_client_authentication_path);
}