function hostingService_Certificate_SelfSigned::view in Aegir HTTPS 7.3
Display settings on the server node page.
Parameters
A reference to the associative array of the subsection of the page: reserved for this service implementation.
File
- submodules/
self_signed/ hosting_self_signed.service.inc, line 49 - 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 view(&$render) {
parent::view($render);
$render['self_signed_field'] = array(
'#type' => 'item',
'#title' => t('Self-signed field'),
// Remember to pass the display through filter_xss!
'#markup' => filter_xss($this->self_signed_field),
);
}