You are here

function hostingService_Certificate_SelfSigned::form in Aegir HTTPS 7.3

Extend the server node form.

Parameters

A reference to the associative array of the subsection of the form: reserved for this service implementation.

File

submodules/self_signed/hosting_self_signed.service.inc, line 66
Self-signed service implementation of the Certificate service type for the hosting front end.

Class

hostingService_Certificate_SelfSigned
An implementation of the certificate service type, registered with hook_hosting_service.

Code

function form(&$form) {
  parent::form($form);
  $form['self_signed_field'] = array(
    '#type' => 'textfield',
    '#title' => t('SelfSigned field'),
    '#description' => t('An self_signed field for the user to fill in.'),
    '#size' => 40,
    '#default_value' => $this->self_signed_field,
    '#maxlength' => 64,
    '#weight' => 5,
  );
}