class hostingService_http_ssl in Hosting 7.4
Same name and namespace in other branches
- 6.2 web_server/ssl/hosting_ssl.service.inc \hostingService_http_ssl
- 7.3 web_server/ssl/hosting_ssl.service.inc \hostingService_http_ssl
@file Define Hosting service class for 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 7 
- Define Hosting service class for SSL.
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=:vid", array(
      ':vid' => $this->server->vid,
    ));
    $this->ssl_enabled = TRUE;
  }
  function insert() {
    parent::insert();
    $id = db_insert('hosting_ssl_server')
      ->fields(array(
      'vid' => $this->server->vid,
      'nid' => $this->server->nid,
      'ssl_port' => $this->ssl_port,
    ))
      ->execute();
  }
  function delete() {
    parent::delete();
    db_delete('hosting_ssl_server')
      ->condition('nid', $this->server->nid)
      ->execute();
  }
  function delete_revision() {
    parent::delete_revision();
    db_delete('hosting_ssl_server')
      ->condition('vid', $this->server->vid)
      ->execute();
  }
  function form(&$form) {
    parent::form($form);
    $form['ssl_port'] = array(
      '#type' => 'textfield',
      '#title' => t('SSL Port'),
      '#required' => !empty($this->available),
      '#size' => 40,
      '#default_value' => isset($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'),
      '#markup' => filter_xss($this->ssl_port),
    );
  }
  public function validate(&$node, &$form, &$form_state) {
    parent::validate($node, $form, $form_state);
    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;
  }
} 
      