-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.conf.php
More file actions
38 lines (27 loc) · 838 Bytes
/
module.conf.php
File metadata and controls
38 lines (27 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
$module["name"] = "domain";
$module["title"] = "Domain";
$module["template"] = "module.tpl.htm";
$module["startpage"] = "domain/domain_list.php";
$module["tab_width"] = '';
/*
Websites menu
*/
$items[] = array( 'title' => "Domain",
'target' => 'content',
'link' => 'domain/domain_list.php');
$items[] = array( 'title' => "TLD",
'target' => 'content',
'link' => 'domain/tld_list.php');
$items[] = array( 'title' => "Handle",
'target' => 'content',
'link' => 'domain/handle_list.php');
$items[] = array( 'title' => "Domain-Provider",
'target' => 'content',
'link' => 'domain/provider_list.php');
$module["nav"][] = array( 'title' => 'Domain',
'open' => 1,
'items' => $items);
// clean up
unset($items);
?>