tbrehm
2007-05-17 e5920cb79f32cdede0cc20e1caeb8367552c6d87
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
$module = array (
  'name' => 'resellers',
  'title' => 'Resellers',
  'template' => 'module.tpl.htm',
  'navframe_page' => '',
  'startpage' => 'resellers/reseller_list.php',
  'tab_width' => '',
  'nav' => 
  array (
    0 => 
    array (
      'title' => 'Resellers',
      'open' => 1,
      'items' => 
      array (
        0 => 
        array (
          'title' => 'Add Reseller',
          'target' => 'content',
          'link' => 'resellers/reseller_edit.php',
        ),
        1 => 
        array (
          'title' => 'Edit Reseller',
          'target' => 'content',
          'link' => 'resellers/reseller_list.php',
        ),
      ),
    ),
    1 => 
    array (
      'title' => 'Statistics',
      'open' => 1,
      'items' => 
      array (
      ),
    ),
    2 => 
    array (
      'title' => 'Invoices',
      'open' => 1,
      'items' => 
      array (
      ),
    ),
    3 => 
    array (
      'title' => 'Mailings',
      'open' => 1,
      'items' => 
      array (
      ),
    ),
  ),
)
?>