function hostingService_http_ssl::load in Hosting 7.4
Same name and namespace in other branches
- 6.2 web_server/ssl/hosting_ssl.service.inc \hostingService_http_ssl::load()
- 7.3 web_server/ssl/hosting_ssl.service.inc \hostingService_http_ssl::load()
Overrides hostingService::load
File
- web_server/
ssl/ hosting_ssl.service.inc, line 9 - Define Hosting service class for SSL.
Class
- hostingService_http_ssl
- @file Define Hosting service class for SSL.
Code
function load() {
parent::load();
$this
->mergeData("SELECT ssl_port FROM {hosting_ssl_server} WHERE vid=:vid", array(
':vid' => $this->server->vid,
));
$this->ssl_enabled = TRUE;
}