function hosting_ssl_menu in Hosting 6.2
Same name and namespace in other branches
- 7.4 web_server/ssl/hosting_ssl.module \hosting_ssl_menu()
- 7.3 web_server/ssl/hosting_ssl.module \hosting_ssl_menu()
Per-server, per-ip certificate listing
File
- web_server/
ssl/ hosting_ssl.module, line 90
Code
function hosting_ssl_menu() {
$items = array();
$items['node/%hosting_ssl_cert_node/ssl'] = array(
'title' => 'Certificates',
'description' => 'SSL certificates deployed on this server',
'page callback' => 'hosting_ssl_server_cert_list',
'page arguments' => array(
1,
),
'type' => MENU_LOCAL_TASK,
'access arguments' => array(
'view server',
),
);
return $items;
}