GlisWeb framework
_fatture.it-IT.php
Vai alla documentazione di questo file.
1 <?php
2 
3  // lingua di questo file
4  $l = 'it-IT';
5  $m = '_mod/_6300.fatture/';
6 
7  // vista righe fatture
8  $p['righe_fatture'] = array(
9  'sitemap' => false,
10  'title' => array( $l => 'righe' ),
11  'h1' => array( $l => 'righe' ),
12  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'view.html' ),
13  'macro' => array( $m . '_src/_inc/_macro/_righe.fatture.view.php' ),
14  'parent' => array( 'id' => 'dashboard_amministrazione' ),
15  'auth' => array( 'groups' => array( 'roots' ) ),
16  'etc' => array( 'tabs' => array( 'righe_fatture',
17  'fatture' ) ),
18  'menu' => array( 'admin' => array( 'label' => array( $l => 'fatture' ),
19  'priority' => 700 ) )
20  );
21 
22 
23 
24  // vista fatture
25  $p['fatture'] = array(
26  'sitemap' => false,
27  'title' => array( $l => 'fatture' ),
28  'h1' => array( $l => 'fatture' ),
29  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'view.html' ),
30  'macro' => array( $m . '_src/_inc/_macro/_fatture.view.php' ),
31  'parent' => array( 'id' => 'dashboard_amministrazione' ),
32  'auth' => array( 'groups' => array( 'roots' ) ),
33  'etc' => array( 'tabs' => $p['righe_fatture']['etc']['tabs'] ),
34  );
35 
36 
37  // gestione fatture
38  $p['fatture_gestione'] = array(
39  'sitemap' => false,
40  'title' => array( $l => 'gestione' ),
41  'h1' => array( $l => 'gestione' ),
42  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'fatture.gestione.html' ),
43  'macro' => array( $m . '_src/_inc/_macro/_fatture.gestione.php' ),
44  'parent' => array( 'id' => 'fatture' ),
45  'auth' => array( 'groups' => array( 'roots' ) ),
46  'etc' => array( 'tabs' => array( 'fatture_gestione',
47  'fatture_gestione_xml',
48  'fatture_gestione_pdf',
49  'fatture_gestione_pagamenti',
50 // 'fatture_gestione_invii',
51  'fatture_gestione_azioni' ) )
52  );
53 
54  // gestione xml fatture
55  $p['fatture_gestione_xml'] = array(
56  'sitemap' => false,
57  'title' => array( $l => 'xml' ),
58  'h1' => array( $l => 'xml' ),
59  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'fatture.gestione.xml.html' ),
60  'macro' => array( $m . '_src/_inc/_macro/_fatture.gestione.php', $m . '_src/_inc/_macro/_fatture.gestione.xml.php' ),
61  'parent' => array( 'id' => 'fatture' ),
62  'auth' => array( 'groups' => array( 'roots' ) ),
63  'etc' => array( 'tabs' => $p['fatture_gestione']['etc']['tabs'] )
64  );
65 
66  // gestione pdf fatture
67  $p['fatture_gestione_pdf'] = array(
68  'sitemap' => false,
69  'title' => array( $l => 'pdf' ),
70  'h1' => array( $l => 'pdf' ),
71  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'fatture.gestione.pdf.html' ),
72  'macro' => array( $m . '_src/_inc/_macro/_fatture.gestione.php', $m . '_src/_inc/_macro/_fatture.gestione.pdf.php' ),
73  'parent' => array( 'id' => 'fatture' ),
74  'auth' => array( 'groups' => array( 'roots' ) ),
75  'etc' => array( 'tabs' => $p['fatture_gestione']['etc']['tabs'] )
76  );
77 
78  // gestione pagamenti fatture
79  $p['fatture_gestione_pagamenti'] = array(
80  'sitemap' => false,
81  'title' => array( $l => 'pagamenti' ),
82  'h1' => array( $l => 'pagamenti' ),
83  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'fatture.gestione.pagamenti.html' ),
84  'macro' => array( $m . '_src/_inc/_macro/_fatture.gestione.php' ),
85  'parent' => array( 'id' => 'fatture' ),
86  'auth' => array( 'groups' => array( 'roots' ) ),
87  'etc' => array( 'tabs' => $p['fatture_gestione']['etc']['tabs'] )
88  );
89 
90  // gestione invii fatture
91  $p['fatture_gestione_invii'] = array(
92  'sitemap' => false,
93  'title' => array( $l => 'invii' ),
94  'h1' => array( $l => 'invii' ),
95  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'fatture.gestione.invii.html' ),
96  'macro' => array( $m . '_src/_inc/_macro/_fatture.gestione.php' ),
97  'parent' => array( 'id' => 'fatture' ),
98  'auth' => array( 'groups' => array( 'roots' ) ),
99  'etc' => array( 'tabs' => $p['fatture_gestione']['etc']['tabs'] )
100  );
101 
102  // gestione azioni fatture
103  $p['fatture_gestione_azioni'] = array(
104  'sitemap' => false,
105  'title' => array( $l => 'azioni' ),
106  'h1' => array( $l => 'azioni' ),
107  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'metro.html' ),
108  'macro' => array( $m . '_src/_inc/_macro/_fatture.gestione.azioni.php' ),
109  'parent' => array( 'id' => 'fatture' ),
110  'auth' => array( 'groups' => array( 'roots' ) ),
111  'etc' => array( 'tabs' => $p['fatture_gestione']['etc']['tabs'] )
112  );
113 
114  // gestione righe fatture
115  $p['righe_fatture_gestione'] = array(
116  'sitemap' => false,
117  'title' => array( $l => 'gestione' ),
118  'h1' => array( $l => 'gestione' ),
119  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'righe.fatture.gestione.html' ),
120  'macro' => array( $m . '_src/_inc/_macro/_righe.fatture.gestione.php' ),
121  'parent' => array( 'id' => 'righe_fatture' ),
122  'auth' => array( 'groups' => array( 'roots' ) ),
123  'etc' => array( 'tabs' => array( 'righe_fatture_gestione',
124  'righe_fatture_gestione_attribuzione' ) )
125  );
126 
127  // attribuzione righe fatture
128  $p['righe_fatture_gestione_attribuzione'] = array(
129  'sitemap' => false,
130  'title' => array( $l => 'attribuzione' ),
131  'h1' => array( $l => 'attribuzione' ),
132  'template' => array( 'path' => '_src/_templates/_standard/', 'schema' => 'righe.fatture.gestione.attribuzione.html' ),
133  'macro' => array( $m . '_src/_inc/_macro/_righe.fatture.gestione.attribuzione.php' ),
134  'parent' => array( 'id' => 'righe_fatture' ),
135  'auth' => array( 'groups' => array( 'roots' ) ),
136  'etc' => array( 'tabs' => $p['righe_fatture_gestione']['etc']['tabs'] )
137  );
138 ?>
$p['righe_fatture']