class hostingService_http_ssl in Hosting 6.2
Same name and namespace in other branches
- 7.4 web_server/ssl/hosting_ssl.service.inc \hostingService_http_ssl
- 7.3 web_server/ssl/hosting_ssl.service.inc \hostingService_http_ssl
Hierarchy
- class \hostingService
- class \hostingService_http
- class \hostingService_http_public
- class \hostingService_http_ssl
- class \hostingService_http_public
- class \hostingService_http
Expanded class hierarchy of hostingService_http_ssl
File
- web_server/
ssl/ hosting_ssl.service.inc, line 3
View source
class hostingService_http_ssl extends hostingService_http_public {
function load() {
parent::load();
$this
->mergeData("SELECT ssl_port FROM {hosting_ssl_server} WHERE vid=%d", $this->server->vid);
$this->ssl_enabled = TRUE;
}
function insert() {
parent::insert();
db_query("INSERT INTO {hosting_ssl_server} (vid, nid, ssl_port) VALUES (%d, %d, %d)", $this->server->vid, $this->server->nid, $this->ssl_port);
}
function delete() {
parent::delete();
db_query("DELETE FROM {hosting_ssl_server} WHERE nid=%d", $this->server->nid);
}
function delete_revision() {
parent::delete_revision();
db_query("DELETE FROM {hosting_ssl_server} WHERE vid=%d", $this->server->vid);
}
function form(&$form) {
parent::form($form);
$form['ssl_port'] = array(
'#type' => 'textfield',
'#title' => t('SSL Port'),
'#required' => $this->available,
'#size' => 40,
'#default_value' => $this->ssl_port ? $this->ssl_port : '443',
'#description' => t("The port that this service will use for encrypted traffic."),
'#maxlength' => 255,
'#weight' => -7,
);
}
function view(&$render) {
parent::view($render);
$render['ssl_port'] = array(
'#type' => 'item',
'#title' => t('SSL Port'),
'#value' => filter_xss($this->ssl_port),
);
}
public function validate(&$node, &$form) {
parent::validate($node, $form);
if ((int) $this->ssl_port <= 0) {
form_set_error('ssl_port', t("The port you specify must be a number."));
}
}
public function context_options($task_type, $ref_type, &$task) {
parent::context_options($task_type, $ref_type, $task);
$task->context_options[$this->service . '_ssl_port'] = $this->ssl_port;
}
public function context_import($context) {
parent::context_import($context);
$this->ssl_port = $context->http_ssl_port;
}
}