vogelor
2008-12-15 7ce09d1bda9fa57e97c967fb5f0c242357ba858b
commit | author | age
acbf53 1 <?php
b5a23a 2
T 3 $module["name"]         = "client";
4 $module["title"]         = "Client";
5 $module["template"]     = "module.tpl.htm";
6 $module["startpage"]     = "client/client_list.php";
7 $module["tab_width"]    = '';
8
9 /*
10     Email accounts menu
11 */
12
13
14 $items[] = array( 'title'     => "Add Client",
15                   'target'     => 'content',
16                   'link'    => 'client/client_edit.php');
17
18 $items[] = array( 'title'     => "Edit Client",
19                   'target'     => 'content',
20                   'link'    => 'client/client_list.php');
21
7ce09d 22 if($_SESSION["s"]["user"]["typ"] == 'admin'){
V 23     $items[] = array( 'title'     => "Edit Client-Templates",
24                       'target'     => 'content',
25                       'link'    => 'client/client_template_list.php');
26 }
b5a23a 27
T 28 $module["nav"][] = array(    'title'    => 'Clients',
29                             'open'     => 1,
30                             'items'    => $items);
b5a2f8 31 ?>